diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-02-01 10:01:52 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-02-01 10:01:52 +0000 |
commit | 8d03f8ec5f8d24544b73cf1dd01c66ca64aaad55 (patch) | |
tree | 6a146bd561aec0da75a9630185619a99dbd4b065 /ace/Local_Name_Space.h | |
parent | 829933789d9abbf8d7f6807de5ded86996e95f05 (diff) | |
download | ATCD-8d03f8ec5f8d24544b73cf1dd01c66ca64aaad55.tar.gz |
*** empty log message ***
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. |