summaryrefslogtreecommitdiff
path: root/ace/Local_Name_Space.h
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-05 06:58:20 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-05 06:58:20 +0000
commit2ead143a6ff8181fd91f5d3f907cf6c5d5bdd2b5 (patch)
treec33b9fbf0c75ebe85b91702047a907933ae67591 /ace/Local_Name_Space.h
parentc1afc43247633c82cca11fdd09fd634bdab7107b (diff)
downloadATCD-2ead143a6ff8181fd91f5d3f907cf6c5d5bdd2b5.tar.gz
Corrected erroneous comments.
Diffstat (limited to 'ace/Local_Name_Space.h')
-rw-r--r--ace/Local_Name_Space.h20
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.
};