From: Julian Smart Date: Wed, 12 Apr 2006 13:46:21 +0000 (+0000) Subject: Added IsDynamic to XTI X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cb8acbd632841a18c69ac6de9e44910e41a5293f?ds=inline Added IsDynamic to XTI git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38684 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/xti.h b/include/wx/xti.h index de91e9d8da..ca4db5f41c 100644 --- a/include/wx/xti.h +++ b/include/wx/xti.h @@ -1661,6 +1661,7 @@ public: const wxChar *GetIncludeName() const { return m_unitName ; } const wxClassInfo **GetParents() const { return m_parents; } int GetSize() const { return m_objectSize; } + bool IsDynamic() const { return (NULL != m_objectConstructor); } wxObjectConstructorFn GetConstructor() const { return m_objectConstructor; } static const wxClassInfo *GetFirst() { return sm_first; }