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.0.19
[lilypond.git]
/
hdr
/
pstaff.hh
blob
50a7f0c7198db08da99a7736994df038b6ddb61a
1
#ifndef PSTAFF_HH
2
#define PSTAFF_HH
3
4
#include
"proto.hh"
5
#include
"plist.hh"
6
#include
"item.hh"
7
#include
"symbol.hh"
8
9
/// items grouped horizontally
10
struct
PStaff
{
11
PScore
*
pscore_l_
;
12
13
14
PointerList
<
const
Spanner
*>
spans
;
15
PointerList
<
Item
*>
its
;
16
17
/* *************** */
18
void
add
(
Item
*
i
);
19
PStaff
(
PScore
*);
20
21
private
:
22
PStaff
(
PStaff
const
&);
23
};
24
25
#endif