summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/types.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-01-08 17:01:08 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-01-08 17:01:08 +0200
commite6d52ecfa2379b1f7f3007e65ded5e4076abc5e9 (patch)
tree70258beb5308c1ec041daea08d41aa745741a0c6 /libxsd/xsd/cxx/tree/types.hxx
parent3f8c237b1abe02df8147170f2fc037edc3f384db (diff)
Add support in buffer class for reusing existing buffer without freeing it
Diffstat (limited to 'libxsd/xsd/cxx/tree/types.hxx')
-rw-r--r--libxsd/xsd/cxx/tree/types.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/libxsd/xsd/cxx/tree/types.hxx b/libxsd/xsd/cxx/tree/types.hxx
index 2ef5c09..e6dc5a4 100644
--- a/libxsd/xsd/cxx/tree/types.hxx
+++ b/libxsd/xsd/cxx/tree/types.hxx
@@ -3098,13 +3098,13 @@ namespace xsd
base64_binary (const void* data, size_t size, size_t capacity);
/**
- * @brief Assume ownership of the specified %buffer.
+ * @brief Reuse an existing %buffer.
*
* If the @a assume_ownership argument is true, the %buffer will
* assume ownership of @a data and will release the memory
* by calling @c operator @c delete().
*
- * @param data A %buffer to assume ownership of.
+ * @param data A %buffer to reuse.
* @param size A %buffer size in bytes.
* @param capacity A %buffer capacity in bytes.
* @param assume_ownership A boolean value indication whether to
@@ -3294,13 +3294,13 @@ namespace xsd
hex_binary (const void* data, size_t size, size_t capacity);
/**
- * @brief Assume ownership of the specified %buffer.
+ * @brief Reuse an existing %buffer..
*
* If the @a assume_ownership argument is true, the %buffer will
* assume ownership of @a data and will release the memory
* by calling @c operator @c delete().
*
- * @param data A %buffer to assume ownership of.
+ * @param data A %buffer to reuse.
* @param size A %buffer size in bytes.
* @param capacity A %buffer capacity in bytes.
* @param assume_ownership A boolean value indication whether to