summaryrefslogtreecommitdiff
path: root/include/value.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-16 14:55:51 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-16 14:55:51 +0100
commitec6d84016bec41b05e275641f990831572171969 (patch)
treeff76497cf1a000d96892dd9b2ed2ab6144a3bf89 /include/value.h
parenta83e9b3af70f35400ec5d62a4b400d55b05c3492 (diff)
added Value::begin() and Value::end() methods to make it possible to iterate over a value
Diffstat (limited to 'include/value.h')
-rw-r--r--include/value.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/value.h b/include/value.h
index 8fea5a6..94cc1cf 100644
--- a/include/value.h
+++ b/include/value.h
@@ -32,6 +32,7 @@ namespace Php {
* Forward definitions
*/
class Base;
+class ValueIterator;
template <class Type> class HashMember;
/**
@@ -498,6 +499,25 @@ public:
}
/**
+ * Define the iterator type
+ */
+ typedef ValueIterator iterator;
+
+ /**
+ * Return an iterator for iterating over the values
+ * This is only meaningful for Value objects that hold an array or an object
+ * @return iterator
+ */
+ iterator begin() const;
+
+ /**
+ * Return an iterator for iterating over the values
+ * This is only meaningful for Value objects that hold an array or an object
+ * @return iterator
+ */
+ iterator end() const;
+
+ /**
* The number of members in case of an array or object
* @return int
*/
@@ -926,6 +946,7 @@ protected:
friend class ClassBase;
friend class Iterator;
friend class Extension;
+ friend class ValueIterator;
};
/**