TypeInformation::TypeInformation

Background

This constructor initializes the data representing the class, including the super class type information pointer, the name of the class, and the allocator function. Additionally, this constructor inserts this object into the global class type information list.

Prototype

TypeInformation( const char * ipszClassName, TypeInformation * super )

Parameters

  • const char * ipszClassName: The name of the class.
  • TypeInformation * super: A pointer to a function that allocates an empty instance of the class using the new operator.