]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/system.hh
* lily/score.cc (Score): unprotect copy of Output_def. Plugs
[lilypond.git] / lily / include / system.hh
index d8aa5a087f9d20a9c2a03ac7b9c0ba936a07f056..ea31faa752100070cbf80eadc5f8b1879e391b43 100644 (file)
@@ -8,46 +8,42 @@
 #ifndef SYSTEM_HH
 #define SYSTEM_HH
 
-
 #include "column-x-positions.hh"
 #include "spanner.hh"
 
 /*
   If you keep following offset reference points, you will always end
-up at the root object. This root object is called @ref{System}, and it
-represents a system (i.e. a line of music).
-
-
- */
+  up at the root object. This root object is called @ref{System}, and it
+  represents a system (i.e. a line of music).
+*/
 class System : public Spanner
 {
 public:
   int rank_;
   void post_processing ();
-  SCM get_line ();
-  SCM get_lines ();
+  SCM get_paper_system ();
+  SCM get_paper_systems ();
 
-  System (SCM, Object_key const*);
-  System (System const&, int);
+  System (SCM, Object_key const *);
+  System (System const &, int);
   virtual Grob *clone (int count) const;
-  
+
   int element_count () const;
   int spanner_count () const;
 
-  void break_into_pieces (Array<Column_x_positions> const&);
-  static bool has_interface (Grob*);
-  
-  Link_array<Item> broken_col_range (Item const*, Item const*) const;
+  void break_into_pieces (Array<Column_x_positions> const &);
+  static bool has_interface (Grob *);
+
+  Link_array<Item> broken_col_range (Item const *, Item const *) const;
   Link_array<Grob> columns () const;
-  
-  void add_column (Paper_column*);
-  void typeset_grob (Grob*);
+
+  void add_column (Paper_column *);
+  void typeset_grob (Grob *);
   void pre_processing ();
 
 protected:
 };
 
-
-void set_loose_columns (System* which, Column_x_positions const *posns);
+void set_loose_columns (System *which, Column_x_positions const *posns);
 #endif /* SYSTEM_HH */