diff options
author | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-05 06:58:20 +0000 |
---|---|---|
committer | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-05 06:58:20 +0000 |
commit | cec88c931aae8152b39638a32a960f04133f95da (patch) | |
tree | c33b9fbf0c75ebe85b91702047a907933ae67591 /ace/Local_Name_Space.h | |
parent | 8ed4b38e665a5543511e6eba6e2e7dc42d053fb1 (diff) | |
download | ATCD-cec88c931aae8152b39638a32a960f04133f95da.tar.gz |
Corrected erroneous comments.
Diffstat (limited to 'ace/Local_Name_Space.h')
-rw-r--r-- | ace/Local_Name_Space.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ace/Local_Name_Space.h b/ace/Local_Name_Space.h index 6c9820f2214..3f1dfc07630 100644 --- a/ace/Local_Name_Space.h +++ b/ace/Local_Name_Space.h @@ -5,15 +5,15 @@ // // = LIBRARY // ACE -// +// // = FILENAME -// ACE_Local_Name_Space +// Local_Name_Space.h // // = AUTHOR // Prashant Jain (pjain@cs.wustl.edu), Irfan Pyarali // (irfan@wuerl.wustl.edu), and Douglas C. Schmidt -// (schmidt@cs.wustl.edu). -// +// (schmidt@cs.wustl.edu). +// // ============================================================================ #if !defined (ACE_LOCAL_NAME_SPACE_H) @@ -27,21 +27,21 @@ class ACE_Export ACE_NS_String // = TITLE // This class and ACE_NS_Internal are used as Adapters to work - // with the Map_Manager. + // with the Map_Manager. // // = DESCRIPTION // In order to work correctly, this class must be able to // convert back and forth with ACE_WStrings. Note that this // class must not have a destructor since otherwise we'll have - // problems... + // problems... { public: // = Initialization. ACE_NS_String (void); // Default "no-op" constructor. - ACE_NS_String (ACE_USHORT16 *dst, - const ACE_USHORT16 *src, + ACE_NS_String (ACE_USHORT16 *dst, + const ACE_USHORT16 *src, size_t len); // Initialization method. @@ -83,7 +83,7 @@ private: class ACE_Export ACE_NS_Internal // = TITLE // This class and ACE_NS_String are used as Adapters to work - // with the Map_Manager. + // with the Map_Manager. { public: ACE_NS_Internal (void); @@ -104,7 +104,7 @@ public: private: ACE_NS_String value_; // Contains the value of the string. - + const char *type_; // Contains the type of the string. }; |