]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/script-def.hh
release: 0.0.39-1
[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 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