Verfügbarmachen von dynamischen Typinformationen
stark von Implementation abhängig; folgende Anhaltspunkte:
Operator typeid:
class type_info { private: // assigning type_info is not supported. made private. type_info& operator=(const type_info&); type_info(const type_info&); public: virtual ~type_info() {} type_info() {} bool operator==(const type_info& arg) const; bool operator!=(const type_info& arg) const; bool before(const type_info& arg); const char* name() const; };