]> git.donarmstrong.com Git - lilypond.git/blob - hdr/clefitem.hh
c07087e0734e59f029ccd7f3b24a1e0a942035e9
[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     const char * name() const;
15     String type;
16     int y_off;
17     bool change;
18
19
20     /****************/
21
22     Clef_item();
23     void read(Clef);
24     void read(String);
25     Molecule* brew_molecule_p()const;
26 };
27
28 #endif // CLEFITEM_HH
29
30