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.3.11
[lilypond.git]
/
hdr
/
script-def.hh
blob
8b5be325611db7be559c9b7f65bdebbede75ff65
1
/*
2
script-def.hh -- part of LilyPond
3
4
(c) 1996,97 Han-Wen Nienhuys
5
*/
6
7
#ifndef SCRIPTDEF_HH
8
#define SCRIPTDEF_HH
9
#include
"string.hh"
10
struct
Script_def
{
11
int
stemdir
;
12
int
staffdir
;
13
14
bool
invertsym
;
15
String symidx
;
16
17
/* *************** */
18
int
compare
(
Script_def
const
&);
19
void
print
()
const
;
20
Script_def
(
String
,
int
,
int
,
bool
);
21
};
22
23
24
#endif
// SCRIPTDEF_HH
25