]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-column.hh
* lily/sequential-music.cc: remove file.
[lilypond.git] / lily / include / paper-column.hh
index 130806cebc0669020e9e9f9938118d39ada7ff34..6a8a1d3d6f80fb3fc1ba3d5eef4744bef3969302 100644 (file)
@@ -3,12 +3,12 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
-#ifndef P_COL_HH
-#define P_COL_HH
+#ifndef PAPER_COLUMN_HH
+#define PAPER_COLUMN_HH
 
 #include "item.hh"
 #include "rod.hh"
 class Paper_column : public Item
 { 
 public:
-  VIRTUAL_COPY_CONS (Grob);
+  int  rank_;
+  /// if lines are broken then this column is in #line#
+  System *system_;
+
+  Paper_column (SCM, Object_key const*);
+  Paper_column (Paper_column const&, int count);
+  
+  virtual Grob *clone (int count) const;
 
   static bool has_interface (Grob*);
-  int  rank_;
   virtual void do_break_processing ();
   virtual Paper_column *get_column () const;
   virtual System *get_system () const;
   
-  /// if lines are broken then this column is in #line#
-  System *system_;
-
   static int get_rank (Grob*);
-
-  DECLARE_SCHEME_CALLBACK(brew_molecule, (SCM));
-  DECLARE_SCHEME_CALLBACK(before_line_breaking, (SCM));
   
-  Paper_column (SCM);
-  static bool musical_b (Grob *);
+  DECLARE_SCHEME_CALLBACK (print, (SCM));
+  DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM));
+  
+  static bool is_musical (Grob *);
   static Moment when_mom (Grob*);
 
-  static bool used_b (Grob*) ;
+  static bool is_used (Grob*) ;
   void set_rank (int);
 };
      
-#endif // P_COL_HH
+#endif // PAPER_COLUMN_HH