]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/g-text-item.hh
c27ad99a691c22ab458240b765fc770d793aefaf
[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 /**
16    Print a text in specified style.
17  */
18 class G_text_item : public Item
19 {
20 public:
21   String text_str_;
22   String style_str_;
23
24   G_text_item ();
25   VIRTUAL_COPY_CONS (Score_element);
26 protected:
27   virtual Molecule *do_brew_molecule_p () const;
28 };
29
30 #endif /* G_TEXT_ITEM_HH */
31