lilypond-0.0.4
[lilypond.git] / pstaff.hh
blobde535a6518230599223d76325ca5390a68efb171
1 #ifndef PSTAFF_HH
2 #define PSTAFF_HH
4 #include "list.hh"
5 #include "item.hh"
7 /// items grouped vertically.
8 class PStaff {
9 public:
10 Stretchable_symbol *stafsym;
11 List<const Spanner*> spans;
12 List<Item*> its;
14 void add(Item*i);
15 PStaff();
16 virtual ~PStaff() {}
19 #endif