]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/multi-measure-rest.hh
release: 1.0.1
[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 Jan Nieuwenhuizen <janneke@gnu.org>
7   
8  */
9
10 #ifndef MULTI_MEASURE_REST_HH
11 #define MULTI_MEASURE_REST_HH
12
13 #include "item.hh"
14
15 class Multi_measure_rest : public Item 
16 {
17 public:
18   Multi_measure_rest ();
19   int measures_i_;
20
21   DECLARE_MY_RUNTIME_TYPEINFO;
22
23 protected:
24   virtual void do_print () const;
25   virtual Molecule *brew_molecule_p () const;
26 };
27
28 #endif /* MULTI_MEASURE_REST_HH */
29