]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/staff-performer.hh
release: 1.3.15
[lilypond.git] / lily / include / staff-performer.hh
index cf1eb20188961a65ef9e0b0599adb9385b27c8ff..1eb3cda72763a1309c0c2e2fb79c709e8f53c27a 100644 (file)
@@ -1,8 +1,8 @@
 /*
   staff-performer.hh -- declare Staff_performer
 
-  (c) 1996, 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-                 Jan Nieuwenhuizen <jan@digicash.com>
+  (c) 1996,  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+                 Jan Nieuwenhuizen <janneke@gnu.org>
  */
 
 #ifndef STAFF_PERFORMER_HH
 
 #include "performer-group-performer.hh"
 
+/** Perform a staff. Individual notes should have their instrument
+  (staff-wide) set, so we override play_element()
+
+  */
 class Staff_performer : public Performer_group_performer 
 {
 public:
-    NAME_MEMBERS();
+  VIRTUAL_COPY_CONS(Translator);
+  
 
-    Staff_performer();
-    ~Staff_performer();
+  Staff_performer ();
+  ~Staff_performer ();
 
-    String instrument_str();
+  String new_instrument_str ();
+  String instrument_str_;
 
 protected:
-    virtual void play_event( Midi_item* l );
+  virtual void play_element (Audio_element* p);
+  virtual void do_removal_processing ();
+  virtual void do_creation_processing ();
+  virtual void do_process_requests ();
+  virtual void do_pre_move_processing ();
 
 private:
-    int midi_track_i_;
+  Audio_staff* audio_staff_p_;
+  Audio_instrument* instrument_p_;
+  Audio_text* instrument_name_p_;
+  Audio_text* name_p_;
+  Audio_tempo* tempo_p_;
 };
 
 #endif // STAFF_PERFORMER_HH