]> git.donarmstrong.com Git - lilypond.git/blob - hdr/clefitem.hh
9dbfffe5cd36249d3ff75bce34563e705a62cc5e
[lilypond.git] / hdr / clefitem.hh
1
2 /*
3   clefitem.hh -- part of LilyPond
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     bool change;
17
18
19     /****************/
20
21     Clef_item();
22     void read(Clef);
23     void read(String);
24     Molecule* brew_molecule_p()const;
25 };
26
27 #endif // CLEFITEM_HH
28
29