repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-0.0.4
[lilypond.git]
/
lookupsyms.hh
blob
d4e08667dbae8533192dd63280d3b6a1b45f25d0
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
static
Parametric_symbol
*
linestaff
(
int
n
);
11
static
Parametric_symbol
*
meter
(
String
);
12
static
Symbol
ball
(
int
);
13
static
Symbol
rest
(
int
);
14
static
Symbol
bar
(
String
);
15
static
Symbol
dots
(
int
);
16
};
17
18
#endif