]> git.donarmstrong.com Git - lilypond.git/blob - hdr/clefitem.hh
release: 0.0.10
[lilypond.git] / hdr / clefitem.hh
1
2 /*
3   clefitem.hh -- part of LilyPond
4
5   (c) 1996 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     Clef_item();
18     void read(Clef);
19     void read(String);
20     void preprocess();
21 };
22
23 #endif // CLEFITEM_HH
24
25