]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rest.hh
release: 0.0.45
[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 /** typeset a Rest. A "vanilla" item.
12  */
13 struct Rest : Item {
14
15     int dots;
16     int balltype;
17     
18     /// rests can be translated up and down.
19     int pos_i_;
20     /* *************** */
21
22
23     Rest(Duration);
24     void do_print()const;
25 NAME_MEMBERS(Rest);
26     Molecule* brew_molecule_p()const;
27 };
28 #endif 
29