21 #ifndef mia_core_typedescr_hh
22 #define mia_core_typedescr_hh
39 static const char *type_descr;
52 static const char *
const value;
58 #define DECLARE_TYPE_DESCR(type) \
60 struct EXPORT_CORE __type_descr<type> { \
61 static const char * const value; \
68 #define DEFINE_TYPE_DESCR(type) const char * const __type_descr<type>::value = #type;
76 #define DEFINE_TYPE_DESCR2(type, name) const char * const __type_descr<type>::value = name;