]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-system.hh
* input/regression/beam-quant-standard.ly: reindent, set
[lilypond.git] / lily / include / paper-system.hh
index c292d9641319f96ab03ec7fd4ba00bc9f364b2d5..f98c09c9add9b4ab8c892772fe36c90541c0e115 100644 (file)
 class Paper_system
 {
   DECLARE_SMOBS (Paper_system,);
-  Stencil stencil_;
-  bool is_title_;
+  SCM mutable_property_alist_;
+  SCM immutable_property_alist_;
 
+  void init_vars ();
 public:
-  Interval staff_refpoints_;
-  Real break_before_penalty_;
-  int number_;
-
-  Paper_system (Stencil, bool);
-  void read_left_bound (Item*);
-  Stencil to_stencil () const;
-  SCM stencils () const;
-  bool is_title () const;
+
+  Paper_system (Stencil, SCM);
+  SCM internal_get_property (SCM sym) const;
+  void internal_set_property (SCM sym, SCM val);
   Real break_before_penalty () const;
-  Interval staff_refpoints () const;
 };
 
 DECLARE_UNSMOB (Paper_system, paper_system);