]> git.saurik.com Git - wxWidgets.git/commitdiff
DECLARE_DYNAMIC_CLASS() requires a default ctor
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 6 Jun 2005 11:52:24 +0000 (11:52 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 6 Jun 2005 11:52:24 +0000 (11:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34546 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/function.tex

index 67937a6486a24d8acc1733dd9905d50bbc055405..d0ccdcc7eb7276b3d4abdf368d272216674f8da0 100644 (file)
@@ -3322,8 +3322,11 @@ dynamically. The same as DECLARE\_ABSTRACT\_CLASS.
 
 \func{}{DECLARE\_DYNAMIC\_CLASS}{className}
 
 
 \func{}{DECLARE\_DYNAMIC\_CLASS}{className}
 
-Used inside a class declaration to declare that the objects of this class should be dynamically
-creatable from run-time type information.
+Used inside a class declaration to make the class known to wxWidgets RTTI
+system and also declare that the objects of this class should be dynamically
+creatable from run-time type information. Notice that this implies that the
+class should have a default constructor, if this is not the case consider using 
+\helpref{DECLARE\_CLASS}{declareclass}.
 
 Example:
 
 
 Example: