]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/horizontal-vertical-group-element.hh
release: 1.0.1
[lilypond.git] / lily / include / horizontal-vertical-group-element.hh
1 /*   
2   horizontal-vertical-group-element.hh -- declare Horizontal_vertical_group_element
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 HORIZONTAL_VERTICAL_GROUP_ELEM_HH
11 #define HORIZONTAL_VERTICAL_GROUP_ELEM_HH
12
13 #include "vertical-group-element.hh"
14 #include "horizontal-group-element.hh"
15
16 /** A class to treat a group of elements as a single entity. The
17   dimensions are the unions of the dimensions of what it contains.
18   Translation means translating the contents.
19   */
20 class Horizontal_vertical_group_element : public Vertical_group_element, 
21                                           public Horizontal_group_element 
22 {  
23 protected:
24 public:
25   Horizontal_vertical_group_element ();
26   
27   DECLARE_MY_RUNTIME_TYPEINFO;    
28 };
29
30
31 #endif /* HORIZONTAL_VERTICAL_GROUP_ELEM_HH */
32
33