X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bdcade0a101893a5030ac2e91dabc79e1388b0a3..9e152a55785098472ca1c0df110ad0a1203f710f:/include/wx/hashmap.h diff --git a/include/wx/hashmap.h b/include/wx/hashmap.h index a418d7be61..95314ada5a 100644 --- a/include/wx/hashmap.h +++ b/include/wx/hashmap.h @@ -42,10 +42,11 @@ #else // !wxUSE_STL || !defined(HAVE_STL_HASH_MAP) -#include // for ptrdiff_t #ifdef __WXWINCE__ typedef int ptrdiff_t; +#else +#include // for ptrdiff_t #endif // private @@ -655,5 +656,12 @@ public: \ (hashmap).clear(); \ } +//--------------------------------------------------------------------------- +// Declarations of common hashmap classes + +WX_DECLARE_HASH_MAP_WITH_DECL( long, long, wxIntegerHash, wxIntegerEqual, + wxLongToLongHashMap, class WXDLLIMPEXP_BASE ); + + #endif // _WX_HASHMAP_H_