]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/text-def.hh
release: 0.0.46.jcn1
[lilypond.git] / lily / include / text-def.hh
1 /*
2   text-def.hh -- part of LilyPond
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef TEXTDEF_HH
8 #define TEXTDEF_HH
9
10 #include "string.hh"
11 #include "proto.hh"
12 #include "input.hh"
13
14 struct Text_def : Input {
15     int align_i_;
16     String text_str_;
17     String style_str_;
18     
19     /* *************** */
20     virtual ~Text_def() {};
21     bool compare(const Text_def&);
22     Text_def();
23     virtual void print() const;
24     virtual Atom create_atom(Paper_def*) const;
25 };
26
27 #endif // TEXTDEF_HH
28