]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/vertical-group-elem.hh
release: 0.1.52
[lilypond.git] / lily / include / vertical-group-elem.hh
1 /*   
2   vertical-group-elem.hh -- declare 
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1997 Han-Wen Nienhuys <hanwen@cs.ruu.nl>
7   
8  */
9
10 #ifndef VERTICAL_GROUP_ELEM_HH
11 #define VERTICAL_GROUP_ELEM_HH
12
13 #include "axis-group-element.hh"
14 /**
15   Like Horizontal_group_element, but in X direction
16  */
17 class Vertical_group_element : public virtual Axis_group_element {
18 protected:
19     virtual Interval do_height() const;
20     virtual void remove_all();
21
22 public:
23     virtual void add_element (Graphical_element*);
24     virtual void remove_element (Graphical_element*);
25     DECLARE_MY_RUNTIME_TYPEINFO;
26 };
27
28 #endif /* VERTICAL_GROUP_ELEM_HH */
29