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.3.31
[lilypond.git]
/
lily
/
directional-spanner.cc
blob
41751d77a2772831540048faa2f7968fb562629b
1
#include
"directional-spanner.hh"
2
#include
"offset.hh"
3
4
Direction
5
Directional_spanner
::
get_default_dir
()
const
6
{
7
return
DOWN
;
8
}
9
10
void
11
Directional_spanner
::
do_pre_processing
()
12
{
13
if
(!
get_direction
())
14
set_direction
(
get_default_dir
());
15
}
16
17