]> git.donarmstrong.com Git - lilypond.git/blob - lily/spanner-elem-group.cc
release: 0.1.9
[lilypond.git] / lily / spanner-elem-group.cc
1 /*
2   spanner-elem-group.cc -- implement Spanner_elem_group
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9 #include "p-col.hh"
10 #include "spanner-elem-group.hh"
11
12
13
14 IMPLEMENT_IS_TYPE_B2(Spanner_elem_group,Spanner,Horizontal_vertical_group_element);
15
16 Interval
17 Spanner_elem_group::do_width() const
18 {
19   return Spanner::do_width();
20 }
21
22 void
23 Spanner_elem_group::do_print() const
24 {
25 #ifndef NPRINT
26   Spanner::do_print();
27   Horizontal_vertical_group_element::do_print();
28 #endif
29 }
30