]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/multi-measure-rest.hh
45fc8dddce74e2697269a2ccca41f5de520a38bd
[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--1999 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 #include "staff-symbol-referencer.hh"
15
16 class Multi_measure_rest : public Spanner, public Staff_symbol_referencer
17 {
18 public:
19   Multi_measure_rest ();
20   int measures_i_;
21   void add_column (Item*);
22
23   Link_array<Item> column_arr_;
24
25 protected:
26   virtual Molecule *do_brew_molecule_p () const;
27   VIRTUAL_COPY_CONS (Score_element);
28
29   virtual void do_add_processing ();
30   virtual void do_post_processing ();
31   virtual void do_print () const;
32   virtual Array<Rod> get_rods () const;
33   virtual void do_substitute_element_pointer (Score_element*,Score_element*);
34 };
35
36 #endif /* MULTI_MEASURE_REST_HH */
37