]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/clef-item.hh
release: 0.0.39-1
[lilypond.git] / lily / include / clef-item.hh
1
2 /*
3   clef-item.hh -- declare Clef_item
4
5   (c) 1996,97 Han-Wen Nienhuys
6 */
7
8 #ifndef CLEFITEM_HH
9 #define CLEFITEM_HH
10 #include "item.hh"
11
12
13 struct Clef_item : Item {
14     String type;
15     int y_off;
16
17     /// is this a change clef (smaller size)?
18     bool change;
19
20
21     /* *************** */
22 NAME_MEMBERS(Clef_item);
23     Clef_item();
24     void read(Clef_register const&);
25     void read(String);
26     Molecule* brew_molecule_p()const;
27 };
28
29 #endif // CLEFITEM_HH
30
31