]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/doxygen/overviews/runtimeclass.h
add very simple (but already exposing many problems) wxIPC benchmark
[wxWidgets.git] / docs / doxygen / overviews / runtimeclass.h
index 6b7add1e452a72d77056d05755788f8cad5f6f1e..dd16fe7db9550d2b0064a13fcb0337e9c7b441f7 100644 (file)
@@ -6,15 +6,15 @@
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-/*!
+/**
 
-@page overview_rtti Runtime Class Information (RTTI)
+@page overview_rtti Runtime Type Information (RTTI)
 
 @li @ref overview_rtti_intro
 @li @ref overview_rtti_classinfo
 @li @ref overview_rtti_example
 
-@seealso
+@see
 
 @li wxObject
 @li wxClassInfo
@@ -25,7 +25,7 @@
 
 @section overview_rtti_intro Introduction
 
-One of the failings of C++ used to be that no run-time information was provided
+One of the failings of C++ used to be that no runtime information was provided
 about a class and its position in the inheritance hierarchy. Another, which
 still persists, is that instances of a class cannot be created just by knowing
 the name of a class, which makes facilities such as persistent storage hard to
@@ -76,7 +76,7 @@ wxClassInfo object instead, then you can simply call wxClassInfo::CreateObject.
 @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
+such as DECLARE_DYNAMIC_CLASS and IMPLEMENT_DYNAMIC_CLASS to record runtime
 information about a class, including:
 
 @li It's position in the inheritance hierarchy.
@@ -93,7 +93,7 @@ You can get the wxClassInfo for a class by using the CLASSINFO macro, e.g.
 CLASSINFO(wxFrame). You can get the wxClassInfo for an object using
 wxObject::GetClassInfo.
 
-@seealso
+@see
 
 @li wxObject
 @li wxCreateDynamicObject