lilypond-1.0.19
[lilypond.git] / lily / include / horizontal-group-item.hh
blob8c6f9ea7b98c8afc5606e79456e1f5391dd6eb78
1 /*
2 horizontal-group-item.hh -- declare Horizontal_group_item
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef HORIZONTAL_GROUP_ITEM_HH
11 #define HORIZONTAL_GROUP_ITEM_HH
13 #include "horizontal-group-element.hh"
14 #include "axis-group-item.hh"
16 /**
17 Group stuff in horizontal sense. Example: Paper_column
19 class Horizontal_group_item : public Axis_group_item, public Horizontal_group_element {
20 protected:
21 virtual void do_unlink () {
22 Axis_group_item::do_unlink ();
24 virtual void do_junk_links() {
25 Axis_group_item::do_junk_links();
27 virtual void do_print() const;
28 public:
29 Horizontal_group_item ();
30 DECLARE_MY_RUNTIME_TYPEINFO;
31 SCORE_ELEMENT_CLONE(Horizontal_group_item);
34 #endif // HORIZONTAL_GROUP_ITEM_HH