]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/text-item.hh
patch::: 1.3.17.jcn2
[lilypond.git] / lily / include / text-item.hh
1 /*   
2   text-item.hh -- declare 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 Text_ITEM_HH
11 #define Text_ITEM_HH
12
13 #include "item.hh"
14
15 /**
16    Print a text in specified style.
17  */
18 class Text_item : public Item
19 {
20 public:
21   // junkme.
22   String text_str_;
23
24   VIRTUAL_COPY_CONS (Score_element);
25 protected:
26   virtual void do_print () const;
27   virtual Molecule *do_brew_molecule_p () const;
28 };
29
30 #endif /* Text_ITEM_HH */
31