blob: f7ac3858acb559eb94d73642f8ee76675f209fc2 (
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
27
|
/*
lilypond, (c) 1996 Han-Wen Nienhuys
*/
#ifndef LOOKUPSYMS_HH
#define LOOKUPSYMS_HH
#include "symbol.hh"
struct Lookup {
Symtables *symtables_;
/****************/
void parse (Text_db&t);
Parametric_symbol *linestaff(int n);
Parametric_symbol *meter(String);
Parametric_symbol *stem();
Symbol ball(int);
Symbol flag(int);
Symbol rest(int);
Symbol bar(String);
Symbol dots(int);
Lookup();
~Lookup();
};
#endif
|