diff options
Diffstat (limited to 'ace/Local_Name_Space.h')
-rw-r--r-- | ace/Local_Name_Space.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ace/Local_Name_Space.h b/ace/Local_Name_Space.h index e02d9c288b6..e1639c841d4 100644 --- a/ace/Local_Name_Space.h +++ b/ace/Local_Name_Space.h @@ -21,7 +21,6 @@ #if !defined (ACE_LOCAL_NAME_SPACE_H) #define ACE_LOCAL_NAME_SPACE_H -#include "ace/Map_Manager.h" #include "ace/Service_Config.h" #include "ace/SString.h" #include "ace/Set.h" @@ -64,12 +63,18 @@ public: int operator == (const ACE_NS_String &) const; // Compare an ACE_NS_String. + int operator != (const ACE_NS_String &) const; + // Compare an ACE_NS_String. + size_t len (void) const; // Returns length of the string ACE_USHORT16 *fast_rep (void) const; // Returns the underlying representation. + size_t hash (void) const; + // Returns a hash value for this string. + private: size_t len_; // Length of the string. |