diff options
Diffstat (limited to 'hdr/staffline.hh')
-rw-r--r-- | hdr/staffline.hh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/hdr/staffline.hh b/hdr/staffline.hh new file mode 100644 index 0000000000..a04078923c --- /dev/null +++ b/hdr/staffline.hh @@ -0,0 +1,29 @@ +/* + staffline.hh -- horizontal structures for broken scores. + + (c) 1996 Han-Wen Nienhuys +*/ + +#ifndef STAFFLINE_HH +#define STAFFLINE_HH + +#include "real.hh" +#include "plist.hh" +#include "vray.hh" +#include "glob.hh" +#include "pstaff.hh" + +/// one broken line of staff. +struct Line_of_staff { + PointerList<Spanner *> brokenspans; + Line_of_score const * scor; + const PStaff *pstaff_; + + /****************/ + + String TeXstring() const; + Line_of_staff(Line_of_score*, PStaff *); + Interval height() const; +}; + +#endif |