lilypond-1.1.28
[lilypond.git] / hdr / rest.hh
blob85c72666772e62cd55c3a17414ca4ed16986add1
1 /*
2 rest.hh -- part of LilyPond
4 (c) 1996,97 Han-Wen Nienhuys
5 */
7 #ifndef REST_HH
8 #define REST_HH
9 #include "item.hh"
11 struct Rest : Item {
13 int dots;
14 int balltype;
16 /* *************** */
19 Rest(int dur,int dots);
20 void do_print()const;
21 NAME_MEMBERS(Rest);
22 Molecule* brew_molecule_p()const;
24 #endif