]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/note-performer.hh
release: 1.3.93
[lilypond.git] / lily / include / note-performer.hh
index 1a6c53bd5fa1ad8b902797001c2808a9e4eb06d1..574e6952244f0547267e0ce6f2541e8a3219a15e 100644 (file)
@@ -1,7 +1,7 @@
 /*
   note-performer.hh -- declare Note_performer
 
-  (c) 1996,  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
                  Jan Nieuwenhuizen <janneke@gnu.org>
  */
 
@@ -11,8 +11,8 @@
 #include "performer.hh"
 
 /**
+Convert reqs to audio notes.
 */
-
 class Note_performer : public Performer {
 public:
   VIRTUAL_COPY_CONS(Translator);
@@ -21,13 +21,17 @@ public:
   Note_performer();
 
 protected:
-  virtual void do_process_requests();
-
+  virtual void do_process_music ();
   virtual bool do_try_music (Music *req_l) ;
-  virtual void do_print() const;
+
+  virtual void do_pre_move_processing ();
+  virtual void process_acknowledged ();
+  Global_translator* global_translator_l ();
 
 private:
-  Melodic_req * note_req_l_;
+  Array<Note_req*> note_req_l_arr_;
+  Array<Audio_note*> note_p_arr_;
+  Array<Audio_note*> delayed_p_arr_;
 };
 
 #endif // NOTE_PERFORMER_HH