]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rest.hh
release: 1.0.1
[lilypond.git] / lily / include / rest.hh
1 /*
2   rest.hh -- declare Rest
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef REST_HH
11 #define REST_HH
12
13 #include "rhythmic-head.hh"
14
15 class  Rest : public Rhythmic_head
16 {
17 public:
18   DECLARE_MY_RUNTIME_TYPEINFO;
19   
20   int position_i_;
21   Rest ();
22   void add_dots (Dots*);
23 protected:
24   virtual void do_add_processing ();
25   virtual Molecule * brew_molecule_p () const;
26 };
27 #endif // REST_HH