]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rest.hh
release: 0.0.44
[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     /// rests can be translated up and down.
17     int pos_i_;
18     /* *************** */
19
20
21     Rest(Duration);
22     void do_print()const;
23 NAME_MEMBERS(Rest);
24     Molecule* brew_molecule_p()const;
25 };
26 #endif 
27