X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4e67bfc7a40d674037d7b0b5d5b57a9d062c2ddf..fb2957900c9c38ffa03b4ab2ea6cbcc1e23ecc7d:/include/wx/hash.h diff --git a/include/wx/hash.h b/include/wx/hash.h index 4634f96313..e5450054f0 100644 --- a/include/wx/hash.h +++ b/include/wx/hash.h @@ -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