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.27
[lilypond.git]
/
hdr
/
clef.hh
blob
2c56cb497e73a21fe1a4275cc050703fd3391e5e
1
/*
2
clef.hh -- part of LilyPond
3
4
(c) 1996,97 Han-Wen Nienhuys
5
*/
6
7
#ifndef CLEF_HH
8
#define CLEF_HH
9
#include
"scalar.hh"
10
#include
"varray.hh"
11
12
struct
Clef
{
13
int
c0_pos
;
14
String clef_type
;
15
16
Clef
();
17
void
read
(
Array
<
Scalar
>
args
);
18
};
19
#endif
// CLEF_HH
20