]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/text-item.hh
release: 1.3.18
[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   VIRTUAL_COPY_CONS (Score_element);
22 protected:
23   virtual Molecule *do_brew_molecule_p () const;
24 };
25
26 #endif /* Text_ITEM_HH */
27