]> git.donarmstrong.com Git - lilypond.git/blob - lily/vertical-group-elem.cc
release: 1.0.1
[lilypond.git] / lily / vertical-group-elem.cc
1 /*
2   vertical-group-elem.cc -- implement 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 #include "vertical-group-element.hh"
10 #include "interval.hh"
11 #include "item.hh"
12 #include "debug.hh"
13
14
15 Vertical_group_element::Vertical_group_element()
16   : Axis_group_element (Y_AXIS,Y_AXIS)
17 {
18 }
19
20 Interval
21 Vertical_group_element::do_height() const
22 {
23   return Graphical_axis_group::extent (Y_AXIS);
24 }
25
26 IMPLEMENT_IS_TYPE_B1(Vertical_group_element, Axis_group_element);