]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/multi-measure-rest.hh
release: 1.3.29
[lilypond.git] / lily / include / multi-measure-rest.hh
index afaeaf777040d7b6a92aa165a69eda93c8c40fe9..527e93fcd68c20f4e7931648dcc8d247e8b3358c 100644 (file)
@@ -3,26 +3,30 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998 Jan Nieuwenhuizen <jan@digicash.com>
+  (c) 1998--2000 Jan Nieuwenhuizen <janneke@gnu.org>
   
  */
 
 #ifndef MULTI_MEASURE_REST_HH
 #define MULTI_MEASURE_REST_HH
 
-#include "item.hh"
+#include "spanner.hh"
 
-class Multi_measure_rest : public Item 
+
+class Multi_measure_rest : public Spanner
 {
 public:
   Multi_measure_rest ();
-  int measures_i_;
-
-  DECLARE_MY_RUNTIME_TYPEINFO;
 
+  void add_column (Item*);
+  Molecule compound_rest (int)const;
 protected:
-  virtual void do_print () const;
-  virtual Molecule *brew_molecule_p () const;
+  virtual Molecule do_brew_molecule () const;
+  VIRTUAL_COPY_CONS (Score_element);
+
+  virtual void do_add_processing ();
+  virtual void do_post_processing ();
+  virtual Array<Rod> get_rods () const;
 };
 
 #endif /* MULTI_MEASURE_REST_HH */