]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rest.hh
release: 0.0.39-1
[lilypond.git] / lily / include / 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 struct Rest : Item {
12
13     int dots;
14     int balltype;
15
16     /* *************** */
17
18
19     Rest(int dur,int dots);
20     void do_print()const;
21 NAME_MEMBERS(Rest);
22     Molecule* brew_molecule_p()const;
23 };
24 #endif 
25