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.1.27
[lilypond.git]
/
hdr
/
clefitem.hh
blob
2e67a7d094785306670a076e805dd968ed2e41ce
1
2
/*
3
clefitem.hh -- declare Clef_item
4
5
(c) 1996,97 Han-Wen Nienhuys
6
*/
7
8
#ifndef CLEFITEM_HH
9
#define CLEFITEM_HH
10
#include
"item.hh"
11
12
13
struct
Clef_item
:
Item
{
14
String type
;
15
int
y_off
;
16
17
/// is this a change clef (smaller size)?
18
bool
change
;
19
20
21
/* *************** */
22
const char
*
name
()
const
;
23
Clef_item
();
24
void
read
(
Clef_register
const
&);
25
void
read
(
String
);
26
Molecule
*
brew_molecule_p
()
const
;
27
};
28
29
#endif
// CLEFITEM_HH
30
31