]> git.donarmstrong.com Git - lilypond.git/blob - pstaff.hh
release: 0.0.3
[lilypond.git] / pstaff.hh
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