]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/cue-clef-engraver.cc
Issue 4961/5: Change rotations to degrees rather than radians
[lilypond.git] / lily / cue-clef-engraver.cc
index 9e0372de180c3512ee3e917168b83215c7a24776..53640afadc17264e62e765b6a1f238d592e5e548 100644 (file)
@@ -20,6 +20,7 @@
 */
 
 #include <cctype>
+using namespace std;
 
 #include "item.hh"
 #include "context.hh"
@@ -40,7 +41,7 @@ public:
 protected:
   void stop_translation_timestep ();
   void process_music ();
-  DECLARE_ACKNOWLEDGER (bar_line);
+  void acknowledge_bar_line (Grob_info);
 
   virtual void derived_mark () const;
 private:
@@ -208,7 +209,12 @@ Cue_clef_engraver::stop_translation_timestep ()
     }
 }
 
-ADD_ACKNOWLEDGER (Cue_clef_engraver, bar_line);
+void
+Cue_clef_engraver::boot ()
+{
+  ADD_ACKNOWLEDGER (Cue_clef_engraver, bar_line);
+}
+
 ADD_TRANSLATOR (Cue_clef_engraver,
                 /* doc */
                 "Determine and set reference point for pitches in cued voices.",