]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/horizontal-group-element.hh
release: 1.0.1
[lilypond.git] / lily / include / horizontal-group-element.hh
1 /*   
2   horizontal-group-element.hh -- declare Horizontal_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_GROUP_ELEM_HH
11 #define HORIZONTAL_GROUP_ELEM_HH
12
13 #include "axis-group-element.hh"
14
15 /**
16   Treat a group of elements a unity in horizontal sense .
17   A column is a typical Vertical_group.
18  */
19 class Horizontal_group_element : public virtual Axis_group_element {
20 protected:
21   virtual Interval do_width() const;
22
23 public:
24   Horizontal_group_element ();
25   DECLARE_MY_RUNTIME_TYPEINFO;
26 };
27
28
29 #endif /* HORIZONTAL_GROUP_ELEM_HH */
30