repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-1.1.21
[lilypond.git]
/
lily
/
horizontal-group-element.cc
blob
6801861409c1cfc50d448003da84c75681bacf1a
1
#include
"horizontal-group-element.hh"
2
#include
"interval.hh"
3
#include
"item.hh"
4
#include
"debug.hh"
5
6
7
8
9
Horizontal_group_element
::
Horizontal_group_element
()
10
:
Axis_group_element
(
X_AXIS
,
X_AXIS
)
11
{
12
}
13
14
Interval
15
Horizontal_group_element
::
do_width
()
const
16
{
17
return
Graphical_axis_group
::
extent
(
X_AXIS
);
18
}
19