]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/hash.h
Some compilation fixes
[wxWidgets.git] / include / wx / hash.h
index 4634f96313b6f3d25a5d81d575619295655f81e8..e5450054f07b57091672ef60ec5650bc0170a826 100644 (file)
@@ -99,6 +99,12 @@ class WXDLLEXPORT wxHashTable: public wxObject
   void DeleteContents(bool flag);
   void Clear(void);
 
+  // Returns number of nodes
+  size_t GetCount() const { return m_count; }
+
+ private:
+   size_t m_count;             // number of elements in the hashtable
+   bool m_deleteContents;
 };
 
 #endif