]> git.donarmstrong.com Git - lilypond.git/blob - hdr/textitem.hh
release: 0.0.21
[lilypond.git] / hdr / textitem.hh
1 /*
2   text.hh -- part of LilyPond
3
4   (c) 1996 Han-Wen Nienhuys
5 */
6
7 #ifndef TEXT_ITEM_HH
8 #define TEXT_ITEM_HH
9
10 #include "textdef.hh"
11 #include "item.hh"
12   
13 struct Text_item : Item{
14     int pos;
15     int staffsize;
16     int dir;
17     Text_def*specs;
18     
19     /****************/
20     
21     void        set_default_pos();
22     Molecule*   brew_molecule()const;
23     void do_pre_processing();
24     
25     Text_item(Text_req*,int);
26 };
27
28
29 #endif // TEXT_HH
30