lilypond-0.0.61
[lilypond.git] / hdr / staffline.hh
blob9fbe3ec9177a1964c56c3c7b4815c452a4784ed9
1 /*
2 staffline.hh -- horizontal structures for broken scores.
4 (c) 1996,97 Han-Wen Nienhuys
5 */
7 #ifndef STAFFLINE_HH
8 #define STAFFLINE_HH
10 #include "proto.hh"
11 #include "real.hh"
12 #include "plist.hh"
13 #include "varray.hh"
14 #include "glob.hh"
15 #include "pstaff.hh"
17 /// one broken line of staff.
18 struct Line_of_staff {
20 Line_of_score * line_of_score_l_;
21 PStaff *pstaff_l_;
23 /* *************** */
25 String TeXstring() const;
26 Line_of_staff(Line_of_score*, PStaff *);
27 Interval height() const;
28 void process();
31 #endif