summaryrefslogtreecommitdiff
path: root/include/value.h
diff options
context:
space:
mode:
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;
};
/**