summaryrefslogtreecommitdiff
path: root/ace/String_Base.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/String_Base.h')
-rw-r--r--ace/String_Base.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/ace/String_Base.h b/ace/String_Base.h
index b8297c68a4a..da9ab247d98 100644
--- a/ace/String_Base.h
+++ b/ace/String_Base.h
@@ -24,8 +24,6 @@
#include "ace/Global_Macros.h"
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
class ACE_Allocator;
/**
@@ -38,7 +36,7 @@ class ACE_Allocator;
* ACE_Allocator with a persistable memory pool. This class is
* optimized for efficiency, so it doesn't provide any internal
* locking.
- * @note If an instance of this class is constructed from or
+ * NOTE: if an instance of this class is constructed from or
* assigned an empty string (with first element of '\0'), then it
* is not allocated new space. Instead, its internal
* representation is set equal to a global empty string.
@@ -158,14 +156,6 @@ public:
/**
* Assignment operator (does copy memory).
*
- * @param s Input null-terminated CHAR string to assign to this object.
- * @return Return a copy of the this string.
- */
- ACE_String_Base < CHAR > &operator = (const CHAR * s);
-
- /**
- * Assignment operator (does copy memory).
- *
* @param s Input ACE_String_Base string to assign to this object.
* @return Return a copy of the this string.
*/
@@ -323,9 +313,6 @@ public:
*/
size_t length (void) const;
- /// Return @c true if the length of the string is zero.
- bool empty (void) const;
-
/**
* Get a copy of the underlying representation.
*
@@ -527,8 +514,6 @@ template < class CHAR >
ACE_String_Base < CHAR > operator + (const CHAR c,
const ACE_String_Base < CHAR > &t);
-ACE_END_VERSIONED_NAMESPACE_DECL
-
#if defined (__ACE_INLINE__)
#include "ace/String_Base.inl"
#endif /* __ACE_INLINE__ */