]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/vertical-group-element.hh
release: 1.0.1
[lilypond.git] / lily / include / vertical-group-element.hh
1 /*   
2   vertical-group-element.hh -- declare 
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.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
21 public:
22   Vertical_group_element () ;
23   DECLARE_MY_RUNTIME_TYPEINFO;
24 };
25
26 #endif /* VERTICAL_GROUP_ELEM_HH */
27