lilypond-1.5.10
[lilypond.git] / lily / gdb.cc
blobe8f71657e4418ad57a121da57f960ab34d9100f2
1 #include "item.hh"
2 #include "spanner.hh"
4 // thanks to GDBs wonderful casting abilities, we need these:
5 Item*
6 to_item (Grob* g)
8 return dynamic_cast<Item*> (g);
10 Spanner*
11 to_spanner (Grob*g)
13 return dynamic_cast<Spanner*> (g);