diff options
Diffstat (limited to 'pstaff.hh')
-rw-r--r-- | pstaff.hh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -3,11 +3,15 @@ #include "list.hh" #include "item.hh" +#include "symbol.hh" /// items grouped vertically. class PStaff { + public: - Stretchable_symbol *stafsym; + Parametric_symbol *stafsym; + virtual Symbol get_stafsym(Real width)const=0; // mayybe overkill + List<const Spanner*> spans; List<Item*> its; |