]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/hara-kiri-line-group-engraver.hh
f894439e9d72da05d35b63ab7c19d0ebb1db0cee
[lilypond.git] / lily / include / hara-kiri-line-group-engraver.hh
1 /*
2   hara-kiri-line-group-engraver.hh -- declare Hara_kiri_line_group_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1998 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9
10 #ifndef HARA_KIRI_LINE_GROUP_GRAV_HH
11 #define HARA_KIRI_LINE_GROUP_GRAV_HH
12
13 #include "line-group-group-engraver.hh"
14
15 /**
16   Just as Line_group_engraver, but won't disgrace Lily by typesetting 
17   an empty line (for orchestral scores).
18   */
19 class Hara_kiri_line_group_engraver : public Line_group_engraver_group
20 {
21 public:
22   VIRTUAL_COPY_CONS (Translator);
23
24 protected:
25   virtual void create_line_spanner ();
26   void typeset_element (Score_element*);
27 };
28
29
30 #endif // HARA_KIRI_LINE_GROUP_GRAV_HH
31