]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/multi-measure-rest.hh
patch::: 1.3.58.jcn2
[lilypond.git] / lily / include / multi-measure-rest.hh
1 /*   
2   multi-measure-rest.hh -- declare Multi_measure_rest
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--2000 Jan Nieuwenhuizen <janneke@gnu.org>
7   
8  */
9
10 #ifndef MULTI_MEASURE_REST_HH
11 #define MULTI_MEASURE_REST_HH
12
13 #include "spanner.hh"
14
15
16 class Multi_measure_rest : public Spanner
17 {
18 public:
19   Multi_measure_rest (SCM);
20  static SCM scheme_molecule (SCM);
21   
22
23   void add_column (Item*);
24   Molecule compound_rest (int)const;
25 protected:
26   Molecule do_brew_molecule () const;
27   VIRTUAL_COPY_CONS (Score_element);
28
29   virtual void do_add_processing ();
30   virtual void after_line_breaking ();
31   virtual Array<Rod> get_rods () const;
32 };
33
34 #endif /* MULTI_MEASURE_REST_HH */
35