23 std::string
Demangle(
const std::string &name);
30 template <
class T> std::string
ClassName(
const T &obj) {
return Demangle(
typeid(obj).name()); }
47 std::string
ClassName(
const std::type_info &typeInfo);
std::string ClassName(const T &obj)
Function which returns the name of the class.
Definition: Demangler.h:30
IncludeFileExc.h IncludeFileExc class declaration.
Definition: Algorithm.h:21
std::string Demangle(const std::string &name)
A simple name demangler.
Definition: Demangler.cpp:28