X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8d9eee83203dfc7177cd8639c14a5c809085698d..9e9574fe45b176ee74bba8fad7574cf9906145d1:/interface/wx/hashmap.h?ds=sidebyside diff --git a/interface/wx/hashmap.h b/interface/wx/hashmap.h index 6364471596..d0bf672e29 100644 --- a/interface/wx/hashmap.h +++ b/interface/wx/hashmap.h @@ -2,7 +2,6 @@ // Name: hashmap.h // Purpose: interface of wxHashMap // Author: wxWidgets team -// RCS-ID: $Id$ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -11,7 +10,7 @@ This is a simple, type-safe, and reasonably efficient hash map class, whose interface is a subset of the interface of STL containers. - In particular, the interface is modeled after std::map, and the various, + In particular, the interface is modelled after std::map, and the various, non-standard, std::hash_map (http://www.cppreference.com/wiki/stl/map/start). Example: @@ -83,8 +82,8 @@ @code WX_DECLARE_HASH_MAP( int, wxString, - ::wxIntegerHash, - ::wxIntegerEqual, + wxIntegerHash, + wxIntegerEqual, MyHash ); // using an user-defined class for keys @@ -119,8 +118,8 @@ WX_DECLARE_HASH_MAP( MyKey, // type of the keys SOME_TYPE, // any type you like - ::MyKeyHash, // hasher - ::MyKeyEqual, // key equality predicate + MyKeyHash, // hasher + MyKeyEqual, // key equality predicate CLASSNAME); // name of the class @endcode