]> git.donarmstrong.com Git - lilypond.git/blob - lookupsyms.hh
release: 0.0.6
[lilypond.git] / lookupsyms.hh
1 /*
2   lilypond, (c) 1996 Han-Wen Nienhuys
3 */
4 #ifndef LOOKUPSYMS_HH
5 #define LOOKUPSYMS_HH
6
7 #include "symbol.hh"
8
9 struct Lookup {
10     Symtables *symtables_;
11     
12     /****************/
13
14     void parse (Text_db&t);
15     Parametric_symbol *linestaff(int n);
16     Parametric_symbol *meter(String);
17     Symbol ball(int);
18     Symbol rest(int);
19     Symbol bar(String);
20     Symbol dots(int);
21     Lookup();
22     ~Lookup();
23 };
24
25 #endif