define WX_DEFINE_ARRAY_PTR for forward compatibility with 2.5

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@25497 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-02-04 15:14:55 +00:00
parent 013675321e
commit 9e6fd17be3

View File

@@ -510,6 +510,10 @@ WX_DECLARE_EXPORTED_BASEARRAY(double, wxBaseArrayDouble);
#define WX_DEFINE_USER_EXPORTED_ARRAY_DOUBLE(T, name, expmode) \ #define WX_DEFINE_USER_EXPORTED_ARRAY_DOUBLE(T, name, expmode) \
WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayDouble, expmode) WX_DEFINE_USER_EXPORTED_TYPEARRAY(T, name, wxBaseArrayDouble, expmode)
// allow to use WX_DEFINE_ARRAY_PTR in the code which has to be compiled with
// both 2.4 and 2.5 for forward compatibility
#define WX_DEFINE_ARRAY_PTR WX_DEFINE_ARRAY
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Convenience macros to define sorted arrays from base arrays // Convenience macros to define sorted arrays from base arrays
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------