]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/axis-group-item.hh
c61a0810201bc63fbb3c055cddff429c27c761eb
[lilypond.git] / lily / include / axis-group-item.hh
1 /*
2   axis-item.hh -- declare Axis_group_item
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef AXIS_ITEM_HH
11 #define AXIS_ITEM_HH
12
13 #include "axis-group-element.hh" 
14 #include "item.hh"
15
16 /**
17   A grouping item. Its special support is in do_breakable_col_processing().
18  */
19
20 class Axis_group_item : public virtual Axis_group_element, public Item {
21 protected:
22   virtual void do_breakable_col_processing();
23   void OK() const;
24   virtual void do_print() const;
25   virtual void do_junk_links() { 
26     Item::do_junk_links();
27     Axis_group_element::do_junk_links();
28   }
29   virtual void do_unlink() {
30     Item::do_unlink();
31     Axis_group_element::do_unlink();
32   }
33 public:
34   DECLARE_MY_RUNTIME_TYPEINFO;
35 };
36
37 #endif // AXIS_ITEM_HH