]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/horizontal-group-item.hh
b9045a4bdb5e520e551e2af3229ad0e79fde65e1
[lilypond.git] / lily / include / horizontal-group-item.hh
1 /*
2   horizontal-group-item.hh -- declare Horizontal_group_item
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 HORIZONTAL_GROUP_ITEM_HH
11 #define HORIZONTAL_GROUP_ITEM_HH
12
13 #include "elem-group.hh"
14 #include "axis-group-item.hh"
15
16 class Horizontal_group_item : public Axis_group_item, public Horizontal_group_element {
17 protected:
18     virtual void remove_all() { Horizontal_group_element::remove_all (); }
19     virtual void do_print() const;
20 public:
21     virtual void add_element (Score_elem*e) { Horizontal_group_element::add_element (e); }
22     virtual void remove_element (Score_elem*e) { Horizontal_group_element::remove_element (e); }
23     DECLARE_MY_RUNTIME_TYPEINFO;
24     SCORE_ELEM_CLONE(Horizontal_group_item);
25   
26
27 };
28
29 #endif // HORIZONTAL_GROUP_ITEM_HH