repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-1.0.19
[lilypond.git]
/
hdr
/
textdef.hh
blob
da0055281d7e34e183a28df8d7204632ed1c2cdf
1
/*
2
textdef.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
13
struct
Text_def
{
14
int
align_i_
;
15
String text_str_
;
16
String style_str_
;
17
char const
*
defined_ch_c_l_
;
18
19
20
/* ****************/
21
virtual
~
Text_def
() {};
22
bool
compare
(
const
Text_def
&);
23
Text_def
();
24
virtual
void
print
()
const
;
25
virtual
Atom
create_atom
(
Paperdef
*)
const
;
26
};
27
28
#endif
// TEXTDEF_HH
29