]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staffline.hh
partial: 0.1.7.jcn
[lilypond.git] / lily / include / 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 "spanner-elem-group.hh"
11
12 /// one broken line of staff.
13 struct Line_of_staff : public Spanner_elem_group{
14
15     SCORE_ELEM_CLONE(Line_of_staff);
16 public:
17     DECLARE_MY_RUNTIME_TYPEINFO;
18
19     /* *************** */
20     /** 
21       Add an element. If it is a Element_group, only the dependency
22       (otherwise, might translate doubly) */
23     void add_element(Score_elem*);
24 };
25
26 #endif