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-0.1.35
[lilypond.git]
/
lily
/
directional-spanner.cc
blob
62ab05f8b4a240920747f8f0de89c93c05adb3a3
1
#include
"directional-spanner.hh"
2
3
void
4
Directional_spanner
::
set_default_dir
()
5
{
6
dir_
=
DOWN
;
7
}
8
9
void
10
Directional_spanner
::
do_pre_processing
()
11
{
12
if
(!
dir_
)
13
set_default_dir
();
14
}
15
16
Directional_spanner
::
Directional_spanner
()
17
{
18
dir_
=
CENTER
;
19
}