]> git.donarmstrong.com Git - lilypond.git/blob - hdr/rest.hh
release: 0.0.24
[lilypond.git] / hdr / rest.hh
1 /*
2   rest.hh -- part of LilyPond
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef REST_HH
8 #define REST_HH
9 #include "item.hh"
10
11 /// ball at the end of the stem
12 struct Rest : public Item
13 {
14     int dots;
15     int balltype;
16
17     /****************/
18
19
20     Rest(int dur,int dots);
21     void print()const;
22
23     Molecule* brew_molecule_p()const;
24 };
25 /**
26   takes care of:
27
28   * help lines  
29   * proper placing of dots 
30
31   */
32 #endif 
33