]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/line-group-grav.hh
release: 0.0.77.jcn1
[lilypond.git] / lily / include / line-group-grav.hh
1 /*
2   line-group-grav.hh -- declare 
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef LINE_GROUP_GRAV_HH
11 #define LINE_GROUP_GRAV_HH
12
13 #include "engraver.hh"
14
15 /**
16   Engravers put elements on the same or lowel level in a line
17   */
18 class Line_group_engraver : public Engraver{
19     Line_of_staff *staffline_p_;   
20
21 protected:
22     virtual void do_creation_processing();
23     virtual void do_removal_processing();
24     virtual void acknowledge_element(Score_elem_info);
25
26 public:
27     NAME_MEMBERS();
28     Line_group_engraver();
29 };
30
31
32 #endif // LINE_GROUP_GRAV_HH
33