// Name: hashmap.h
// Purpose: interface of wxHashMap
// Author: wxWidgets team
-// RCS-ID: $Id$
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
@code
WX_DECLARE_HASH_MAP( int,
wxString,
- ::wxIntegerHash,
- ::wxIntegerEqual,
+ wxIntegerHash,
+ wxIntegerEqual,
MyHash );
// using an user-defined class for keys
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