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.69
[lilypond.git]
/
lily
/
gdb.cc
blob
9404eb1c691a3e30cab41552891ee57ad046b100
1
#include
"item.hh"
2
#include
"spanner.hh"
3
4
// thanks to GDBs wonderful casting abilities, we need these:
5
Item
*
6
to_item
(
Score_element
*
g
)
7
{
8
return dynamic_cast
<
Item
*>(
g
);
9
}
10
Spanner
*
11
to_spanner
(
Score_element
*
g
)
12
{
13
return dynamic_cast
<
Spanner
*>(
g
);
14
}