lilypond-0.1.57
[lilypond.git] / hdr / clefitem.hh
blob2e67a7d094785306670a076e805dd968ed2e41ce
2 /*
3 clefitem.hh -- declare Clef_item
5 (c) 1996,97 Han-Wen Nienhuys
6 */
8 #ifndef CLEFITEM_HH
9 #define CLEFITEM_HH
10 #include "item.hh"
13 struct Clef_item : Item {
14 String type;
15 int y_off;
17 /// is this a change clef (smaller size)?
18 bool change;
21 /* *************** */
22 const char * name() const;
23 Clef_item();
24 void read(Clef_register const&);
25 void read(String);
26 Molecule* brew_molecule_p()const;
29 #endif // CLEFITEM_HH