]> git.donarmstrong.com Git - lilypond.git/blob - hdr/staffline.hh
release: 0.0.30
[lilypond.git] / hdr / staffline.hh
1 /*
2   staffline.hh --     horizontal structures for broken scores.
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef STAFFLINE_HH
8 #define STAFFLINE_HH
9
10 #include "proto.hh"
11 #include "real.hh"
12 #include "plist.hh"
13 #include "varray.hh"
14 #include "glob.hh"
15 #include "pstaff.hh"
16
17 /// one broken line of staff.
18 struct Line_of_staff {
19
20     Line_of_score  * line_of_score_l_;
21     PStaff *pstaff_l_;
22
23     /* *************** */
24     
25     String TeXstring() const;
26     Line_of_staff(Line_of_score*, PStaff *);
27     Interval height() const;
28     void process();
29 };
30
31 #endif