]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/p-staff.hh
release: 0.0.42.pre3
[lilypond.git] / lily / include / p-staff.hh
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<Spanner const *> 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