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]
/
pstaff.hh
blob
de535a6518230599223d76325ca5390a68efb171
1
#ifndef PSTAFF_HH
2
#define PSTAFF_HH
3
4
#include
"list.hh"
5
#include
"item.hh"
6
7
/// items grouped vertically.
8
class
PStaff
{
9
public
:
10
Stretchable_symbol
*
stafsym
;
11
List
<
const
Spanner
*>
spans
;
12
List
<
Item
*>
its
;
13
14
void
add
(
Item
*
i
);
15
PStaff
();
16
virtual
~
PStaff
() {}
17
};
18
19
#endif