summaryrefslogtreecommitdiff
path: root/ACE/ace/Read_Buffer.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-12-07 12:46:39 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-12-07 12:46:39 +0000
commit9b26a9aee4116eb2f1eacfb3c51ebb6545e54852 (patch)
tree9c99ea4828135be51622fbf80100e5466c4eabd0 /ACE/ace/Read_Buffer.h
parent4492a3d72944c15350ae9e2f61ea2b680edcf093 (diff)
downloadATCD-9b26a9aee4116eb2f1eacfb3c51ebb6545e54852.tar.gz
Thu Dec 7 12:47:43 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Read_Buffer.h')
-rw-r--r--ACE/ace/Read_Buffer.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/ACE/ace/Read_Buffer.h b/ACE/ace/Read_Buffer.h
index e8d7348bd73..cfa0dd0f791 100644
--- a/ACE/ace/Read_Buffer.h
+++ b/ACE/ace/Read_Buffer.h
@@ -66,19 +66,19 @@ public:
/**
* Returns a pointer dynamically allocated with
- * <ACE_Allocator::malloc> to data from the input stream up to (and
- * including) the <terminator>. If <search> is >= 0 then all
- * occurrences of the <search> value are substituted with the
- * <replace> value. The last of the byte of data is a 0, so that
- * <strlen> can be used on it. The caller is responsible for
+ * ACE_Allocator::malloc to data from the input stream up to (and
+ * including) the @a terminator. If @a search is >= 0 then all
+ * occurrences of the @a search value are substituted with the
+ * @a replace value. The last of the byte of data is a 0, so that
+ * @c strlen can be used on it. The caller is responsible for
* freeing the pointer returned from this method using the
- * <ACE_Allocator::free>.
+ * ACE_Allocator::free.
*/
char *read (int terminator = EOF,
int search = '\n',
int replace = '\0');
- /// Returns the number of characters replaced during a <read>.
+ /// Returns the number of characters replaced during a @c read.
size_t replaced (void) const;
/// Returns the size of the allocated buffer obtained during a
@@ -116,7 +116,6 @@ private:
/// Pointer to the allocator.
ACE_Allocator *allocator_;
-
};
ACE_END_VERSIONED_NAMESPACE_DECL