]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/note-performer.hh
release: 1.3.93
[lilypond.git] / lily / include / note-performer.hh
index 194365af898e618a523a77978f966352bcf4a5f4..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>
  */
 
@@ -9,11 +9,10 @@
 #define NOTE_PERFORMER_HH
 
 #include "performer.hh"
-#include "list.hh"
 
 /**
+Convert reqs to audio notes.
 */
-
 class Note_performer : public Performer {
 public:
   VIRTUAL_COPY_CONS(Translator);
@@ -22,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:
-  Array<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