]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/g-text-item.hh
2362a5d9bef412e64831d21e1fb982cd48295ee5
[lilypond.git] / lily / include / g-text-item.hh
1 /*   
2   g-text-item.hh -- declare G_text_item
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef G_TEXT_ITEM_HH
11 #define G_TEXT_ITEM_HH
12
13 #include "item.hh"
14
15 class G_text_item : public Item
16 {
17 public:
18   String text_str_;
19   String style_str_;
20
21   G_text_item ();
22   VIRTUAL_COPY_CONS (Score_element);
23 protected:
24   virtual Molecule *do_brew_molecule_p () const;
25 };
26
27 #endif /* G_TEXT_ITEM_HH */
28