lilypond-1.3.115
[lilypond.git] / flower / rtti.cc
blobae1aa8658c4cc2af5d92e87b5e6efcc19a374075
1 #include <typeinfo>
2 #include <ctype.h>
3 #include "virtual-methods.hh"
6 const char *
7 demangle_classname (type_info const &t)
9 char const *s = t.name();
10 while (isdigit (*s))
11 s++;
12 return s;