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-1.3.5
[lilypond.git]
/
hdr
/
clef.hh
blob
7325c542a685793620ba01aaca2b8bf96ba4aeb2
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
/// where is c-0 in the staff?
13
class
Clef
{
14
15
public
:
16
int
c0_position_i_
;
17
String clef_type_str_
;
18
19
Clef
();
20
void
set_type
(
String
);
21
};
22
#endif
// CLEF_HH
23