]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/hash.h
mac paths updated
[wxWidgets.git] / interface / hash.h
index 7def270604f28910c156101758f834bb1d4235ca..b7bfc1091a5e15bdc995f0f3a27fafe234affd48 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        hash.h
-// Purpose:     documentation for wxHashTable class
+// Purpose:     interface of wxHashTable
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -20,8 +20,7 @@
     @library{wxbase}
     @category{containers}
 
-    @seealso
-    wxList
+    @see wxList
 */
 class wxHashTable : public wxObject
 {
@@ -76,7 +75,7 @@ public:
     /**
         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
@@ -105,3 +104,4 @@ public:
     void Put(const char* key, wxObject* object);
     //@}
 };
+