]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-column-engraver.hh
* lily/instrument-name-engraver.cc (stop_translation_timestep):
[lilypond.git] / lily / include / paper-column-engraver.hh
index 8c82d0dadb54742e5ea7838befc403d349753624..ef0fc75363cb5e6e1c2cb0594f0713565fe01ec0 100644 (file)
@@ -3,22 +3,19 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
-
+  (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef PAPER_COLUMN_ENGRAVER_HH
 #define PAPER_COLUMN_ENGRAVER_HH
 
-
 #include "engraver.hh"
 
-
 class Paper_column_engraver : public Engraver
 {
   void make_columns ();
-  void set_columns (Paper_column*, Paper_column*); 
-  TRANSLATOR_DECLARATIONS(Paper_column_engraver);
+  void set_columns (Paper_column *, Paper_column *);
+  TRANSLATOR_DECLARATIONS (Paper_column_engraver);
 
 protected:
   void stop_translation_timestep ();
@@ -26,24 +23,23 @@ protected:
   void process_music ();
   virtual void initialize ();
   virtual void finalize ();
-  virtual bool try_music (Music*);
+  virtual bool try_music (Music *);
 
-  DECLARE_ACKNOWLEDGER(item);
-  DECLARE_ACKNOWLEDGER(note_spacing);
-  DECLARE_ACKNOWLEDGER(staff_spacing);
+  DECLARE_ACKNOWLEDGER (item);
+  DECLARE_ACKNOWLEDGER (note_spacing);
+  DECLARE_ACKNOWLEDGER (staff_spacing);
 
   System *system_;
   Music *break_event_;
   int breaks_;                 // used for stat printing
   Paper_column *command_column_;
   Paper_column *musical_column_;
-  Link_array<Item> items_;
+  Link_array__Item_ items_;
   bool first_;
   Moment last_moment_;
 public:
   // ug.h 
   void forbid_breaks ();
-
 };
 
 #endif /* PAPER_COLUMN_ENGRAVER_HH */