lilypond-1.5.33
[lilypond.git] / hdr / pstaff.hh
blob50a7f0c7198db08da99a7736994df038b6ddb61a
1 #ifndef PSTAFF_HH
2 #define PSTAFF_HH
4 #include "proto.hh"
5 #include "plist.hh"
6 #include "item.hh"
7 #include "symbol.hh"
9 /// items grouped horizontally
10 struct PStaff {
11 PScore * pscore_l_;
14 PointerList<const Spanner*> spans;
15 PointerList<Item*> its;
17 /* *************** */
18 void add(Item*i);
19 PStaff(PScore*);
21 private:
22 PStaff(PStaff const&);
25 #endif