]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/script-def.hh
release: 0.0.46.jcn1
[lilypond.git] / lily / include / script-def.hh
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
11 struct Script_def{
12     int stemdir;
13     int staffdir;
14
15     bool invertsym;
16     String symidx;
17
18     /* *************** */
19     int compare(Script_def const &);
20     void print() const;
21     Script_def(String, int, int ,bool);
22 };
23
24
25 #endif // SCRIPTDEF_HH
26