]> git.donarmstrong.com Git - lilypond.git/blob - hdr/scriptdef.hh
fb1dc4317f07833fe0e0ad715da4b9ec7c78e617
[lilypond.git] / hdr / scriptdef.hh
1 /*
2   scriptdef.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     void print() const;
19     Script_def(String, int, int ,bool);
20 };
21
22
23 #endif // SCRIPTDEF_HH
24