Related | |
group | demangle_type() and demangle_symbol() |
Classes | |
class | libcwd::type_info_ct |
Class that holds type information for debugging purposes. Returned by type_info_of(). More... | |
Functions | |
template<typename T> | |
type_info_ct const & | libcwd::type_info_of (T const &instance) |
Get type information of a given class instance. | |
template<typename T> | |
type_info_ct const & | libcwd::type_info_of (void) |
Get type information of a given class or type. |
|
Get type information of a given class or type.
This specialization allows to specify a type without an object (for example by calling: As it doesn't ignore top-level qualifiers it is best suited to print for example template parameters. For example, template<typename T> void Foo::func(T const&) { Dout(dc::notice, "Calling Foo::func(" << type_info_of<T const&>().demangled_name() << ')'); } |
|
Get type information of a given class instance.
This template is used by passing an object to it, top level CV-qualifiers (and a possible reference) are ignored in the same way as does |