git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52284
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
@section page_topics_programming Programming with wxWidgets
@li @subpage overview_backwardcompat
@section page_topics_programming Programming with wxWidgets
@li @subpage overview_backwardcompat
-@li @subpage overview_runtimeclass
+@li @subpage overview_rtti
@li @subpage overview_refcount
@li @subpage overview_app
@li @subpage overview_unicode
@li @subpage overview_refcount
@li @subpage overview_app
@li @subpage overview_unicode
-@page overview_runtimeclass Runtime Class Information (RTTI)
+@page overview_rtti Runtime Class Information (RTTI)
-@li @ref overview_runtimeclass_intro
-@li @ref overview_runtimeclass_classinfo
-@li @ref overview_runtimeclass_example
+@li @ref overview_rtti_intro
+@li @ref overview_rtti_classinfo
+@li @ref overview_rtti_example
-@section overview_runtimeclass_intro Introduction
+@section overview_rtti_intro Introduction
One of the failings of C++ used to be that no run-time information was provided
about a class and its position in the inheritance hierarchy. Another, which
One of the failings of C++ used to be that no run-time information was provided
about a class and its position in the inheritance hierarchy. Another, which
wxClassInfo object instead, then you can simply call wxClassInfo::CreateObject.
wxClassInfo object instead, then you can simply call wxClassInfo::CreateObject.
-@section overview_runtimeclass_classinfo wxClassInfo
+@section overview_rtti_classinfo wxClassInfo
This class stores meta-information about classes. An application may use macros
such as DECLARE_DYNAMIC_CLASS and IMPLEMENT_DYNAMIC_CLASS to record run-time
This class stores meta-information about classes. An application may use macros
such as DECLARE_DYNAMIC_CLASS and IMPLEMENT_DYNAMIC_CLASS to record run-time
@li wxCreateDynamicObject
@li wxCreateDynamicObject
-@section overview_runtimeclass_example Example
+@section overview_rtti_example Example
In a header file frame.h:
In a header file frame.h: