From 0c5fff142d31cb41eb9bcaaad9f74917eb3030ad Mon Sep 17 00:00:00 2001 From: Baptiste Lepilleur Date: Thu, 11 Mar 2010 20:23:07 +0000 Subject: [PATCH] Removed experimental notification on iterators, and added experimental status for allocator (to be removed) --- LICENSE | 1 + include/json/value.h | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d20fb29 --- /dev/null +++ b/LICENSE @@ -0,0 +1 @@ +The json-cpp library and this documentation are in Public Domain. diff --git a/include/json/value.h b/include/json/value.h index d575b70..58bfd88 100644 --- a/include/json/value.h +++ b/include/json/value.h @@ -513,7 +513,7 @@ namespace Json { Args args_; }; - /** \brief Allocator to customize member name and string value memory management done by Value. + /** \brief Experimental do not use: Allocator to customize member name and string value memory management done by Value. * * - makeMemberName() and releaseMemberName() are called to respectively duplicate and * free an Json::objectValue member name. @@ -785,7 +785,7 @@ namespace Json { PageIndex pageCount_; }; - /** \brief Allocator to customize Value internal array. + /** \brief Experimental: do not use. Allocator to customize Value internal array. * Below is an example of a simple implementation (actual implementation use * memory pool). \code @@ -873,7 +873,7 @@ public: // overridden from ValueArrayAllocator #endif // #ifdef JSON_VALUE_USE_INTERNAL_MAP - /** \brief Experimental and untested: base class for Value iterators. + /** \brief base class for Value iterators. * */ class ValueIteratorBase @@ -943,7 +943,7 @@ public: // overridden from ValueArrayAllocator #endif }; - /** \brief Experimental and untested: const iterator for object and array value. + /** \brief const iterator for object and array value. * */ class ValueConstIterator : public ValueIteratorBase @@ -1002,7 +1002,7 @@ public: // overridden from ValueArrayAllocator }; - /** \brief Experimental and untested: iterator for object and array value. + /** \brief Iterator for object and array value. */ class ValueIterator : public ValueIteratorBase {