summaryrefslogtreecommitdiff
path: root/lily/include/script-def.hh
blob: 8d9528b45a95a2e7f4df48db885d6856241a5280 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
  script-def.hh -- part of LilyPond

  (c) 1996,97 Han-Wen Nienhuys
*/

#ifndef SCRIPTDEF_HH
#define SCRIPTDEF_HH
#include "string.hh"

struct Script_def{
    int stemdir;
    int staffdir;

    bool invertsym;
    String symidx;

    /* *************** */
    int compare(Script_def const &);
    void print() const;
    Script_def(String, int, int ,bool);
};


#endif // SCRIPTDEF_HH