]> git.saurik.com Git - wxWidgets.git/blame - include/wx/listimpl.cpp
Fix up NSSlider code to not use class posing and instantiate the proper type (now...
[wxWidgets.git] / include / wx / listimpl.cpp
CommitLineData
fd3f686c 1/////////////////////////////////////////////////////////////////////////////
75c6c545 2// Name: listimpl.cpp
fd3f686c 3// Purpose: second-part of macro based implementation of template lists
75c6c545 4// Author: Vadim Zeitlin
fd3f686c
VZ
5// Modified by:
6// Created: 16/11/98
75c6c545 7// RCS-ID: $Id$
fd3f686c 8// Copyright: (c) 1998 Vadim Zeitlin
65571936 9// Licence: wxWindows licence
fd3f686c 10/////////////////////////////////////////////////////////////////////////////
75c6c545 11
df5168c4
MB
12#if wxUSE_STL
13
7d13fbc6
VZ
14#undef WX_DEFINE_LIST
15#define WX_DEFINE_LIST(name) \
16 void _WX_LIST_HELPER_##name::DeleteFunction( _WX_LIST_ITEM_TYPE_##name X )\
17 { \
18 delete X; \
19 } \
20 name::BaseListType name::EmptyList;
df5168c4 21
7d13fbc6 22#else // !wxUSE_STL
df5168c4 23
ed1288c1
VZ
24 #define _DEFINE_LIST(T, name) \
25 void wx##name##Node::DeleteData() \
26 { \
27 delete (T *)GetData(); \
28 }
75c6c545 29
ed1288c1
VZ
30 // redefine the macro so that now it will generate the class implementation
31 // old value would provoke a compile-time error if this file is not included
32 #undef WX_DEFINE_LIST
33 #define WX_DEFINE_LIST(name) _DEFINE_LIST(_WX_LIST_ITEM_TYPE_##name, name)
75c6c545 34
ed1288c1
VZ
35 // don't pollute preprocessor's name space
36 //#undef _DEFINE_LIST
df5168c4 37
7d13fbc6 38#endif // wxUSE_STL/!wxUSE_STL
ed1288c1 39