]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/line-group-group-engraver.hh
baaabdd3e9425abc77db9d751d8bbab6b0417930
[lilypond.git] / lily / include / line-group-group-engraver.hh
1 /*
2   line-group-engraver.hh -- declare Line_group_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef LINE_GROUP_GRAV_HH
11 #define LINE_GROUP_GRAV_HH
12
13 #include "engraver-group-engraver.hh"
14 #include "lily-proto.hh"
15
16 /**
17   Engravers put elements on the same or lowel level in a line.
18
19   DEPRECATED.
20   */
21 class Line_group_engraver_group : public Engraver_group_engraver
22 {
23 protected:
24   Spanner *staffline_;   
25
26   virtual void create_line_spanner ();
27   virtual void initialize ();
28   virtual void finalize ();
29   virtual void typeset_grob (Grob*);
30 public:
31   TRANSLATOR_DECLARATIONS(Line_group_engraver_group);
32 };
33
34
35 #endif // LINE_GROUP_GRAV_HH
36