From: fred Date: Fri, 1 Nov 1996 13:40:41 +0000 (+0000) Subject: lilypond-0.0.9 X-Git-Tag: release/1.5.59~6977 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=edc85a0948ab5603f756b7fdd0cae1f97953278a;p=lilypond.git lilypond-0.0.9 --- diff --git a/hdr/pstaff.hh b/hdr/pstaff.hh new file mode 100644 index 0000000000..bf33c6b437 --- /dev/null +++ b/hdr/pstaff.hh @@ -0,0 +1,23 @@ +#ifndef PSTAFF_HH +#define PSTAFF_HH + +#include "plist.hh" +#include "item.hh" +#include "symbol.hh" + +/// items grouped vertically. +struct PStaff { + Parametric_symbol *stafsym; + PScore * pscore_; + + virtual Symbol get_stafsym(Real width)const=0; // maybe overkill + + List spans; + List its; + + void add(Item*i); + PStaff(PScore*); + virtual ~PStaff() {} +}; + +#endif