]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/tie-performer.cc
release: 1.5.29
[lilypond.git] / lily / tie-performer.cc
index e25e6cb4b2af62735e2019d6c6eb2f1a6b7a7882..413e65fabc075f4c3f374ea3ba0885dea182f282 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2001 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1999--2002 Jan Nieuwenhuizen <janneke@gnu.org>
   
  */
 
@@ -39,8 +39,7 @@ inline int compare (CNote_melodic_tuple const &a, CNote_melodic_tuple const &b)
 class Tie_performer : public Performer
 {
 public:
-  VIRTUAL_COPY_CONS (Translator);
-  Tie_performer ();
+  TRANSLATOR_DECLARATIONS(Tie_performer);
 private:
   bool done_;
   PQueue<CNote_melodic_tuple> past_notes_pq_;
@@ -65,20 +64,9 @@ Tie_performer::Tie_performer ()
   done_ = false;
 }
 
-ADD_THIS_TRANSLATOR (Tie_performer);
+ENTER_DESCRIPTION (Tie_performer, "", "", "", "", "");
 
 
-#if 0
-Tie_performer::Tie_performer ()
-{
-  // URG
-  // if we don't do this, lily dumps core
-  // which means that ``initialize'' and
-  // ``start_translation_timestep'' did not happen?!
-  initialize ();
-}
-#endif
-
 void
 Tie_performer::initialize ()
 {
@@ -105,7 +93,7 @@ Tie_performer::acknowledge_audio_element (Audio_element_info i)
 {
   if (Audio_note *nh = dynamic_cast<Audio_note *> (i.elem_l_))
     {
-      Note_req * m = dynamic_cast<Note_req> (i.req_l_);
+      Note_req * m = dynamic_cast<Note_req *> (i.req_l_);
       if (!m)
        return;
       now_notes_.push (CNote_melodic_tuple (nh, m, now_mom ()+ m->length_mom ()));
@@ -175,6 +163,7 @@ Tie_performer::create_audio_elements ()
     }
 }
 
+
 void
 Tie_performer::stop_translation_timestep ()
 {
@@ -233,3 +222,4 @@ CNote_melodic_tuple::time_compare (CNote_melodic_tuple const&h1,
 {
   return (h1.end_ - h2.end_).main_part_.sign ();
 }
+