/////////////////////////////////////////////////////////////////////////////
// Name: hash.h
-// Purpose: documentation for wxHashTable class
+// Purpose: interface of wxHashTable
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxbase}
@category{containers}
- @seealso
- wxList
+ @see wxList
*/
class wxHashTable : public wxObject
{
/**
Returns the number of elements in the hash table.
*/
- size_t GetCount();
+ size_t GetCount() const;
/**
Makes an integer key out of a string. An application may wish to make a key
void Put(const char* key, wxObject* object);
//@}
};
+