]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/hashmap.h
implemented tab order in wxGTK2
[wxWidgets.git] / include / wx / hashmap.h
index a418d7be6100efc54c369a6149dfcfc4eec31543..95314ada5a1f05c23207e87c0e091cbff542c7a0 100644 (file)
 
 #else // !wxUSE_STL || !defined(HAVE_STL_HASH_MAP)
 
-#include <stddef.h>             // for ptrdiff_t
 
 #ifdef __WXWINCE__
 typedef int ptrdiff_t;
+#else
+#include <stddef.h>             // 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_