1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxObject class, plus run-time type information macros
4 // Author: Julian Smart
5 // Modified by: Ron Lee
8 // Copyright: (c) 1997 Julian Smart
9 // (c) 2001 Ron Lee <ron@debian.org>
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/memory.h"
22 class WXDLLIMPEXP_FWD_BASE wxObject
;
23 class WXDLLIMPEXP_FWD_BASE wxString
;
25 #ifndef wxUSE_EXTENDED_RTTI
26 #define wxUSE_EXTENDED_RTTI 0
29 #define wxDECLARE_CLASS_INFO_ITERATORS() \
30 class WXDLLIMPEXP_BASE const_iterator \
32 typedef wxHashTable_Node Node; \
34 typedef const wxClassInfo* value_type; \
35 typedef const value_type& const_reference; \
36 typedef const_iterator itor; \
37 typedef value_type* ptr_type; \
40 wxHashTable* m_table; \
42 typedef const_reference reference_type; \
43 typedef ptr_type pointer_type; \
45 const_iterator(Node* node, wxHashTable* table) \
46 : m_node(node), m_table(table) { } \
47 const_iterator() : m_node(NULL), m_table(NULL) { } \
48 value_type operator*() const; \
50 const itor operator++(int); \
51 bool operator!=(const itor& it) const \
52 { return it.m_node != m_node; } \
53 bool operator==(const itor& it) const \
54 { return it.m_node == m_node; } \
57 static const_iterator begin_classinfo(); \
58 static const_iterator end_classinfo()
60 #if wxUSE_EXTENDED_RTTI
64 // ----------------------------------------------------------------------------
65 // conditional compilation
66 // ----------------------------------------------------------------------------
68 class WXDLLIMPEXP_FWD_BASE wxClassInfo
;
69 class WXDLLIMPEXP_FWD_BASE wxHashTable
;
70 class WXDLLIMPEXP_FWD_BASE wxObject
;
71 class WXDLLIMPEXP_FWD_BASE wxPluginLibrary
;
72 class WXDLLIMPEXP_FWD_BASE wxHashTable_Node
;
74 // ----------------------------------------------------------------------------
76 // ----------------------------------------------------------------------------
78 typedef wxObject
*(*wxObjectConstructorFn
)(void);
80 class WXDLLIMPEXP_BASE wxClassInfo
82 friend class WXDLLIMPEXP_FWD_BASE wxObject
;
83 friend WXDLLIMPEXP_BASE wxObject
*wxCreateDynamicObject(const wxString
& name
);
85 wxClassInfo( const wxChar
*className
,
86 const wxClassInfo
*baseInfo1
,
87 const wxClassInfo
*baseInfo2
,
89 wxObjectConstructorFn ctor
)
90 : m_className(className
)
92 , m_objectConstructor(ctor
)
93 , m_baseInfo1(baseInfo1
)
94 , m_baseInfo2(baseInfo2
)
103 wxObject
*CreateObject() const
104 { return m_objectConstructor
? (*m_objectConstructor
)() : 0; }
105 bool IsDynamic() const { return (NULL
!= m_objectConstructor
); }
107 const wxChar
*GetClassName() const { return m_className
; }
108 const wxChar
*GetBaseClassName1() const
109 { return m_baseInfo1
? m_baseInfo1
->GetClassName() : NULL
; }
110 const wxChar
*GetBaseClassName2() const
111 { return m_baseInfo2
? m_baseInfo2
->GetClassName() : NULL
; }
112 const wxClassInfo
*GetBaseClass1() const { return m_baseInfo1
; }
113 const wxClassInfo
*GetBaseClass2() const { return m_baseInfo2
; }
114 int GetSize() const { return m_objectSize
; }
116 wxObjectConstructorFn
GetConstructor() const
117 { return m_objectConstructor
; }
118 static const wxClassInfo
*GetFirst() { return sm_first
; }
119 const wxClassInfo
*GetNext() const { return m_next
; }
120 static wxClassInfo
*FindClass(const wxString
& className
);
122 // Climb upwards through inheritance hierarchy.
123 // Dual inheritance is catered for.
125 bool IsKindOf(const wxClassInfo
*info
) const
129 ( m_baseInfo1
&& m_baseInfo1
->IsKindOf(info
) ) ||
130 ( m_baseInfo2
&& m_baseInfo2
->IsKindOf(info
) ) );
133 wxDECLARE_CLASS_INFO_ITERATORS();
136 const wxChar
*m_className
;
138 wxObjectConstructorFn m_objectConstructor
;
140 // Pointers to base wxClassInfos
142 const wxClassInfo
*m_baseInfo1
;
143 const wxClassInfo
*m_baseInfo2
;
145 // class info object live in a linked list:
146 // pointers to its head and the next element in it
148 static wxClassInfo
*sm_first
;
151 static wxHashTable
*sm_classTable
;
154 // registers the class
158 wxDECLARE_NO_COPY_CLASS(wxClassInfo
);
161 WXDLLIMPEXP_BASE wxObject
*wxCreateDynamicObject(const wxString
& name
);
163 // ----------------------------------------------------------------------------
164 // Dynamic class macros
165 // ----------------------------------------------------------------------------
167 #define wxDECLARE_ABSTRACT_CLASS(name) \
169 static wxClassInfo ms_classInfo; \
170 virtual wxClassInfo *GetClassInfo() const
172 #define wxDECLARE_DYNAMIC_CLASS_NO_ASSIGN(name) \
173 wxDECLARE_NO_ASSIGN_CLASS(name); \
174 wxDECLARE_DYNAMIC_CLASS(name)
176 #define wxDECLARE_DYNAMIC_CLASS_NO_COPY(name) \
177 wxDECLARE_NO_COPY_CLASS(name); \
178 wxDECLARE_DYNAMIC_CLASS(name)
180 #define wxDECLARE_DYNAMIC_CLASS(name) \
181 wxDECLARE_ABSTRACT_CLASS(name); \
182 static wxObject* wxCreateObject()
184 #define wxDECLARE_CLASS(name) \
185 wxDECLARE_DYNAMIC_CLASS(name)
188 // common part of the macros below
189 #define wxIMPLEMENT_CLASS_COMMON(name, basename, baseclsinfo2, func) \
190 wxClassInfo name::ms_classInfo(wxT(#name), \
191 &basename::ms_classInfo, \
193 (int) sizeof(name), \
196 wxClassInfo *name::GetClassInfo() const \
197 { return &name::ms_classInfo; }
199 #define wxIMPLEMENT_CLASS_COMMON1(name, basename, func) \
200 wxIMPLEMENT_CLASS_COMMON(name, basename, NULL, func)
202 #define wxIMPLEMENT_CLASS_COMMON2(name, basename1, basename2, func) \
203 wxIMPLEMENT_CLASS_COMMON(name, basename1, &basename2::ms_classInfo, func)
205 // -----------------------------------
206 // for concrete classes
207 // -----------------------------------
209 // Single inheritance with one base class
210 #define wxIMPLEMENT_DYNAMIC_CLASS(name, basename) \
211 wxIMPLEMENT_CLASS_COMMON1(name, basename, name::wxCreateObject) \
212 wxObject* name::wxCreateObject() \
215 // Multiple inheritance with two base classes
216 #define wxIMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2) \
217 wxIMPLEMENT_CLASS_COMMON2(name, basename1, basename2, \
218 name::wxCreateObject) \
219 wxObject* name::wxCreateObject() \
222 // -----------------------------------
223 // for abstract classes
224 // -----------------------------------
226 // Single inheritance with one base class
227 #define wxIMPLEMENT_ABSTRACT_CLASS(name, basename) \
228 wxIMPLEMENT_CLASS_COMMON1(name, basename, NULL)
230 // Multiple inheritance with two base classes
231 #define wxIMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) \
232 wxIMPLEMENT_CLASS_COMMON2(name, basename1, basename2, NULL)
234 #define wxIMPLEMENT_CLASS(name, basename) \
235 wxIMPLEMENT_ABSTRACT_CLASS(name, basename)
237 #define wxIMPLEMENT_CLASS2(name, basename1, basename2) \
238 IMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2)
240 #endif // !wxUSE_EXTENDED_RTTI
243 // -----------------------------------
244 // for pluggable classes
245 // -----------------------------------
247 // NOTE: this should probably be the very first statement
248 // in the class declaration so wxPluginSentinel is
249 // the first member initialised and the last destroyed.
251 // _DECLARE_DL_SENTINEL(name) wxPluginSentinel m_pluginsentinel;
253 #if wxUSE_NESTED_CLASSES
255 #define _DECLARE_DL_SENTINEL(name, exportdecl) \
256 class exportdecl name##PluginSentinel { \
258 static const wxString sm_className; \
260 name##PluginSentinel(); \
261 ~name##PluginSentinel(); \
263 name##PluginSentinel m_pluginsentinel
265 #define _IMPLEMENT_DL_SENTINEL(name) \
266 const wxString name::name##PluginSentinel::sm_className(#name); \
267 name::name##PluginSentinel::name##PluginSentinel() { \
268 wxPluginLibrary *e = (wxPluginLibrary*) wxPluginLibrary::ms_classes.Get(#name); \
269 if( e != 0 ) { e->RefObj(); } \
271 name::name##PluginSentinel::~name##PluginSentinel() { \
272 wxPluginLibrary *e = (wxPluginLibrary*) wxPluginLibrary::ms_classes.Get(#name); \
273 if( e != 0 ) { e->UnrefObj(); } \
277 #define _DECLARE_DL_SENTINEL(name)
278 #define _IMPLEMENT_DL_SENTINEL(name)
280 #endif // wxUSE_NESTED_CLASSES
282 #define wxDECLARE_PLUGGABLE_CLASS(name) \
283 wxDECLARE_DYNAMIC_CLASS(name); _DECLARE_DL_SENTINEL(name, WXDLLIMPEXP_CORE)
284 #define wxDECLARE_ABSTRACT_PLUGGABLE_CLASS(name) \
285 wxDECLARE_ABSTRACT_CLASS(name); _DECLARE_DL_SENTINEL(name, WXDLLIMPEXP_CORE)
287 #define wxDECLARE_USER_EXPORTED_PLUGGABLE_CLASS(name, usergoo) \
288 wxDECLARE_DYNAMIC_CLASS(name); _DECLARE_DL_SENTINEL(name, usergoo)
289 #define wxDECLARE_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, usergoo) \
290 wxDECLARE_ABSTRACT_CLASS(name); _DECLARE_DL_SENTINEL(name, usergoo)
292 #define wxIMPLEMENT_PLUGGABLE_CLASS(name, basename) \
293 wxIMPLEMENT_DYNAMIC_CLASS(name, basename) _IMPLEMENT_DL_SENTINEL(name)
294 #define wxIMPLEMENT_PLUGGABLE_CLASS2(name, basename1, basename2) \
295 wxIMPLEMENT_DYNAMIC_CLASS2(name, basename1, basename2) _IMPLEMENT_DL_SENTINEL(name)
296 #define wxIMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(name, basename) \
297 wxIMPLEMENT_ABSTRACT_CLASS(name, basename) _IMPLEMENT_DL_SENTINEL(name)
298 #define wxIMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2) \
299 wxIMPLEMENT_ABSTRACT_CLASS2(name, basename1, basename2) _IMPLEMENT_DL_SENTINEL(name)
301 #define wxIMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS(name, basename) \
302 wxIMPLEMENT_PLUGGABLE_CLASS(name, basename)
303 #define wxIMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS2(name, basename1, basename2) \
304 wxIMPLEMENT_PLUGGABLE_CLASS2(name, basename1, basename2)
305 #define wxIMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(name, basename) \
306 wxIMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(name, basename)
307 #define wxIMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2) \
308 wxIMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(name, basename1, basename2)
310 #define wxCLASSINFO(name) (&name::ms_classInfo)
312 #define wxIS_KIND_OF(obj, className) obj->IsKindOf(&className::ms_classInfo)
314 // Just seems a bit nicer-looking (pretend it's not a macro)
315 #define wxIsKindOf(obj, className) obj->IsKindOf(&className::ms_classInfo)
317 // this cast does some more checks at compile time as it uses static_cast
320 // note that it still has different semantics from dynamic_cast<> and so can't
321 // be replaced by it as long as there are any compilers not supporting it
322 #define wxDynamicCast(obj, className) \
323 ((className *) wxCheckDynamicCast( \
324 const_cast<wxObject *>(static_cast<const wxObject *>(\
325 const_cast<className *>(static_cast<const className *>(obj)))), \
326 &className::ms_classInfo))
328 // The 'this' pointer is always true, so use this version
329 // to cast the this pointer and avoid compiler warnings.
330 #define wxDynamicCastThis(className) \
331 (IsKindOf(&className::ms_classInfo) ? (className *)(this) : (className *)0)
333 // FIXME-VC6: dummy argument needed because VC6 doesn't support explicitly
334 // choosing the template function to call
336 inline T
*wxCheckCast(const void *ptr
, T
* = NULL
)
338 wxASSERT_MSG( wxDynamicCast(ptr
, T
), "wxStaticCast() used incorrectly" );
339 return const_cast<T
*>(static_cast<const T
*>(ptr
));
342 #define wxStaticCast(obj, className) wxCheckCast((obj), (className *)NULL)
344 // ----------------------------------------------------------------------------
345 // set up memory debugging macros
346 // ----------------------------------------------------------------------------
349 Which new/delete operator variants do we want?
351 _WX_WANT_NEW_SIZET_WXCHAR_INT = void *operator new (size_t size, wxChar *fileName = 0, int lineNum = 0)
352 _WX_WANT_DELETE_VOID = void operator delete (void * buf)
353 _WX_WANT_DELETE_VOID_CONSTCHAR_SIZET = void operator delete (void *buf, const char *_fname, size_t _line)
354 _WX_WANT_DELETE_VOID_WXCHAR_INT = void operator delete(void *buf, wxChar*, int)
355 _WX_WANT_ARRAY_NEW_SIZET_WXCHAR_INT = void *operator new[] (size_t size, wxChar *fileName , int lineNum = 0)
356 _WX_WANT_ARRAY_DELETE_VOID = void operator delete[] (void *buf)
357 _WX_WANT_ARRAY_DELETE_VOID_WXCHAR_INT = void operator delete[] (void* buf, wxChar*, int )
360 #if wxUSE_MEMORY_TRACING
362 // All compilers get this one
363 #define _WX_WANT_NEW_SIZET_WXCHAR_INT
365 // Everyone except Visage gets the next one
366 #ifndef __VISAGECPP__
367 #define _WX_WANT_DELETE_VOID
370 // Only visage gets this one under the correct circumstances
371 #if defined(__VISAGECPP__) && __DEBUG_ALLOC__
372 #define _WX_WANT_DELETE_VOID_CONSTCHAR_SIZET
375 // Only VC++ 6 and CodeWarrior get overloaded delete that matches new
376 #if (defined(__VISUALC__) && (__VISUALC__ >= 1200)) || \
377 (defined(__MWERKS__) && (__MWERKS__ >= 0x2400))
378 #define _WX_WANT_DELETE_VOID_WXCHAR_INT
381 // Now see who (if anyone) gets the array memory operators
382 #if wxUSE_ARRAY_MEMORY_OPERATORS
384 // Everyone except Visual C++ (cause problems for VC++ - crashes)
385 #if !defined(__VISUALC__)
386 #define _WX_WANT_ARRAY_NEW_SIZET_WXCHAR_INT
389 // Everyone except Visual C++ (cause problems for VC++ - crashes)
390 #if !defined(__VISUALC__)
391 #define _WX_WANT_ARRAY_DELETE_VOID
394 // Only CodeWarrior 6 or higher
395 #if defined(__MWERKS__) && (__MWERKS__ >= 0x2400)
396 #define _WX_WANT_ARRAY_DELETE_VOID_WXCHAR_INT
399 #endif // wxUSE_ARRAY_MEMORY_OPERATORS
401 #endif // wxUSE_MEMORY_TRACING
403 // ----------------------------------------------------------------------------
404 // wxRefCounter: ref counted data "manager"
405 // ----------------------------------------------------------------------------
407 class WXDLLIMPEXP_BASE wxRefCounter
410 wxRefCounter() { m_count
= 1; }
412 int GetRefCount() const { return m_count
; }
414 void IncRef() { m_count
++; }
418 // this object should never be destroyed directly but only as a
419 // result of a DecRef() call:
420 virtual ~wxRefCounter() { }
426 // It doesn't make sense to copy the reference counted objects, a new ref
427 // counter should be created for a new object instead and compilation
428 // errors in the code using wxRefCounter due to the lack of copy ctor often
429 // indicate a problem, e.g. a forgotten copy ctor implementation somewhere.
430 wxDECLARE_NO_COPY_CLASS(wxRefCounter
);
433 // ----------------------------------------------------------------------------
434 // wxObjectRefData: ref counted data meant to be stored in wxObject
435 // ----------------------------------------------------------------------------
437 typedef wxRefCounter wxObjectRefData
;
440 // ----------------------------------------------------------------------------
441 // wxObjectDataPtr: helper class to avoid memleaks because of missing calls
442 // to wxObjectRefData::DecRef
443 // ----------------------------------------------------------------------------
446 class wxObjectDataPtr
449 typedef T element_type
;
451 wxEXPLICIT
wxObjectDataPtr(T
*ptr
= NULL
) : m_ptr(ptr
) {}
454 wxObjectDataPtr(const wxObjectDataPtr
<T
> &tocopy
)
455 : m_ptr(tocopy
.m_ptr
)
467 T
*get() const { return m_ptr
; }
469 // test for pointer validity: defining conversion to unspecified_bool_type
470 // and not more obvious bool to avoid implicit conversions to integer types
471 typedef T
*(wxObjectDataPtr
<T
>::*unspecified_bool_type
)() const;
472 operator unspecified_bool_type() const
474 return m_ptr
? &wxObjectDataPtr
<T
>::get
: NULL
;
479 wxASSERT(m_ptr
!= NULL
);
483 T
*operator->() const
485 wxASSERT(m_ptr
!= NULL
);
496 wxObjectDataPtr
& operator=(const wxObjectDataPtr
&tocopy
)
500 m_ptr
= tocopy
.m_ptr
;
506 wxObjectDataPtr
& operator=(T
*ptr
)
518 // ----------------------------------------------------------------------------
519 // wxObject: the root class of wxWidgets object hierarchy
520 // ----------------------------------------------------------------------------
522 class WXDLLIMPEXP_BASE wxObject
524 wxDECLARE_ABSTRACT_CLASS(wxObject
);
527 wxObject() { m_refData
= NULL
; }
528 virtual ~wxObject() { UnRef(); }
530 wxObject(const wxObject
& other
)
532 m_refData
= other
.m_refData
;
537 wxObject
& operator=(const wxObject
& other
)
539 if ( this != &other
)
546 bool IsKindOf(const wxClassInfo
*info
) const;
549 // Turn on the correct set of new and delete operators
551 #ifdef _WX_WANT_NEW_SIZET_WXCHAR_INT
552 void *operator new ( size_t size
, const wxChar
*fileName
= NULL
, int lineNum
= 0 );
555 #ifdef _WX_WANT_DELETE_VOID
556 void operator delete ( void * buf
);
559 #ifdef _WX_WANT_DELETE_VOID_CONSTCHAR_SIZET
560 void operator delete ( void *buf
, const char *_fname
, size_t _line
);
563 #ifdef _WX_WANT_DELETE_VOID_WXCHAR_INT
564 void operator delete ( void *buf
, const wxChar
*, int );
567 #ifdef _WX_WANT_ARRAY_NEW_SIZET_WXCHAR_INT
568 void *operator new[] ( size_t size
, const wxChar
*fileName
= NULL
, int lineNum
= 0 );
571 #ifdef _WX_WANT_ARRAY_DELETE_VOID
572 void operator delete[] ( void *buf
);
575 #ifdef _WX_WANT_ARRAY_DELETE_VOID_WXCHAR_INT
576 void operator delete[] (void* buf
, const wxChar
*, int );
579 // ref counted data handling methods
582 wxObjectRefData
*GetRefData() const { return m_refData
; }
583 void SetRefData(wxObjectRefData
*data
) { m_refData
= data
; }
585 // make a 'clone' of the object
586 void Ref(const wxObject
& clone
);
588 // destroy a reference
591 // Make sure this object has only one reference
592 void UnShare() { AllocExclusive(); }
594 // check if this object references the same data as the other one
595 bool IsSameAs(const wxObject
& o
) const { return m_refData
== o
.m_refData
; }
598 // ensure that our data is not shared with anybody else: if we have no
599 // data, it is created using CreateRefData() below, if we have shared data
600 // it is copied using CloneRefData(), otherwise nothing is done
601 void AllocExclusive();
603 // both methods must be implemented if AllocExclusive() is used, not pure
604 // virtual only because of the backwards compatibility reasons
606 // create a new m_refData
607 virtual wxObjectRefData
*CreateRefData() const;
609 // create a new m_refData initialized with the given one
610 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
612 wxObjectRefData
*m_refData
;
615 inline wxObject
*wxCheckDynamicCast(wxObject
*obj
, wxClassInfo
*classInfo
)
617 return obj
&& obj
->GetClassInfo()->IsKindOf(classInfo
) ? obj
: NULL
;
620 #if wxUSE_EXTENDED_RTTI
621 class WXDLLIMPEXP_BASE wxDynamicObject
: public wxObject
623 friend class WXDLLIMPEXP_FWD_BASE wxDynamicClassInfo
;
625 // instantiates this object with an instance of its superclass
626 wxDynamicObject(wxObject
* superClassInstance
, const wxDynamicClassInfo
*info
) ;
627 virtual ~wxDynamicObject();
629 void SetProperty (const wxChar
*propertyName
, const wxxVariant
&value
);
630 wxxVariant
GetProperty (const wxChar
*propertyName
) const ;
632 // get the runtime identity of this object
633 wxClassInfo
*GetClassInfo() const
636 return (wxClassInfo
*) m_classInfo
;
638 wxDynamicClassInfo
*nonconst
= const_cast<wxDynamicClassInfo
*>(m_classInfo
);
639 return static_cast<wxClassInfo
*>(nonconst
);
643 wxObject
* GetSuperClassInstance() const
645 return m_superClassInstance
;
648 // removes an existing runtime-property
649 void RemoveProperty( const wxChar
*propertyName
) ;
651 // renames an existing runtime-property
652 void RenameProperty( const wxChar
*oldPropertyName
, const wxChar
*newPropertyName
) ;
654 wxObject
*m_superClassInstance
;
655 const wxDynamicClassInfo
*m_classInfo
;
656 struct wxDynamicObjectInternal
;
657 wxDynamicObjectInternal
*m_data
;
661 // ----------------------------------------------------------------------------
662 // more debugging macros
663 // ----------------------------------------------------------------------------
665 #if wxUSE_DEBUG_NEW_ALWAYS
666 #define WXDEBUG_NEW new(__TFILE__,__LINE__)
668 #if wxUSE_GLOBAL_MEMORY_OPERATORS
669 #define new WXDEBUG_NEW
670 #elif defined(__VISUALC__)
671 // Including this file redefines new and allows leak reports to
672 // contain line numbers
673 #include "wx/msw/msvcrt.h"
675 #endif // wxUSE_DEBUG_NEW_ALWAYS
677 // ----------------------------------------------------------------------------
678 // Compatibility macro aliases
679 // ----------------------------------------------------------------------------
681 // deprecated variants _not_ requiring a semicolon after them and without wx prefix.
682 // (note that also some wx-prefixed macro do _not_ require a semicolon because
683 // it's not always possible to force the compire to require it)
685 #define DECLARE_CLASS_INFO_ITERATORS() wxDECLARE_CLASS_INFO_ITERATORS();
686 #define DECLARE_ABSTRACT_CLASS(n) wxDECLARE_ABSTRACT_CLASS(n);
687 #define DECLARE_DYNAMIC_CLASS_NO_ASSIGN(n) wxDECLARE_DYNAMIC_CLASS_NO_ASSIGN(n);
688 #define DECLARE_DYNAMIC_CLASS_NO_COPY(n) wxDECLARE_DYNAMIC_CLASS_NO_COPY(n);
689 #define DECLARE_DYNAMIC_CLASS(n) wxDECLARE_DYNAMIC_CLASS(n);
690 #define DECLARE_CLASS(n) wxDECLARE_CLASS(n);
692 #define IMPLEMENT_DYNAMIC_CLASS(n,b) wxIMPLEMENT_DYNAMIC_CLASS(n,b)
693 #define IMPLEMENT_DYNAMIC_CLASS2(n,b1,b2) wxIMPLEMENT_DYNAMIC_CLASS2(n,b1,b2)
694 #define IMPLEMENT_ABSTRACT_CLASS(n,b) wxIMPLEMENT_ABSTRACT_CLASS(n,b)
695 #define IMPLEMENT_ABSTRACT_CLASS2(n,b1,b2) wxIMPLEMENT_ABSTRACT_CLASS2(n,b1,b2)
696 #define IMPLEMENT_CLASS(n,b) wxIMPLEMENT_CLASS(n,b)
697 #define IMPLEMENT_CLASS2(n,b1,b2) wxIMPLEMENT_CLASS2(n,b1,b2)
699 #define DECLARE_PLUGGABLE_CLASS(n) wxDECLARE_PLUGGABLE_CLASS(n);
700 #define DECLARE_ABSTRACT_PLUGGABLE_CLASS(n) wxDECLARE_ABSTRACT_PLUGGABLE_CLASS(n);
701 #define DECLARE_USER_EXPORTED_PLUGGABLE_CLASS(n,u) wxDECLARE_USER_EXPORTED_PLUGGABLE_CLASS(n,u);
702 #define DECLARE_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(n,u) wxDECLARE_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(n,u);
704 #define IMPLEMENT_PLUGGABLE_CLASS(n,b) wxIMPLEMENT_PLUGGABLE_CLASS(n,b)
705 #define IMPLEMENT_PLUGGABLE_CLASS2(n,b,b2) wxIMPLEMENT_PLUGGABLE_CLASS2(n,b,b2)
706 #define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(n,b) wxIMPLEMENT_ABSTRACT_PLUGGABLE_CLASS(n,b)
707 #define IMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(n,b,b2) wxIMPLEMENT_ABSTRACT_PLUGGABLE_CLASS2(n,b,b2)
708 #define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS(n,b) wxIMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS(n,b)
709 #define IMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS2(n,b,b2) wxIMPLEMENT_USER_EXPORTED_PLUGGABLE_CLASS2(n,b,b2)
710 #define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(n,b) wxIMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS(n,b)
711 #define IMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS2(n,b,b2) wxIMPLEMENT_USER_EXPORTED_ABSTRACT_PLUGGABLE_CLASS2(n,b,b2)
713 #define CLASSINFO(n) wxCLASSINFO(n)
715 #endif // _WX_OBJECTH__