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.61
[lilypond.git]
/
hdr
/
rest.hh
blob
85c72666772e62cd55c3a17414ca4ed16986add1
1
/*
2
rest.hh -- part of LilyPond
3
4
(c) 1996,97 Han-Wen Nienhuys
5
*/
6
7
#ifndef REST_HH
8
#define REST_HH
9
#include
"item.hh"
10
11
struct
Rest
:
Item
{
12
13
int
dots
;
14
int
balltype
;
15
16
/* *************** */
17
18
19
Rest
(
int
dur
,
int
dots
);
20
void
do_print
()
const
;
21
NAME_MEMBERS
(
Rest
);
22
Molecule
*
brew_molecule_p
()
const
;
23
};
24
#endif
25