]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-performer.cc
(deep-WWW-clean): Remove wiki-dump. Fixes web-clean target.
[lilypond.git] / lily / note-performer.cc
index c5c522405a6d1d32efe956ebc670c7a9ce938127..b6076e94f562520e7853dffe45475b9d932ecb7c 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1996--2001 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1996--2002 Jan Nieuwenhuizen <janneke@gnu.org>
  */
 
 #include "performer.hh"
 #include "audio-item.hh"
 #include "audio-column.hh"
 #include "global-translator.hh"
-#include "debug.hh"
+#include "warn.hh"
 
 /**
 Convert reqs to audio notes.
 */
 class Note_performer : public Performer {
 public:
-  VIRTUAL_COPY_CONS (Translator);
+  TRANSLATOR_DECLARATIONS(Note_performer);
   
 protected:
   virtual bool try_music (Music *req_l) ;
@@ -33,8 +33,6 @@ private:
   Array<Audio_note*> delayed_p_arr_;
 };
 
-ADD_THIS_TRANSLATOR (Note_performer);
-
 void 
 Note_performer::create_audio_elements ()
 {
@@ -126,3 +124,9 @@ Note_performer::try_music (Music* req_l)
     }
   return false;
 }
+
+ENTER_DESCRIPTION(Note_performer,"","","","","");
+
+Note_performer::Note_performer()
+{
+}