]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/multi-measure-rest.hh
release: 1.3.69
[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   
21   static void set_interface (Score_element*);
22   static bool has_interface (Score_element*);
23   static SCM brew_molecule (SCM);
24   static  void add_column (Score_element*,Item*);
25   VIRTUAL_COPY_CONS (Score_element);
26   virtual Array<Rod> get_rods () const;
27 };
28
29 #endif /* MULTI_MEASURE_REST_HH */
30