summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-19 14:16:53 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-19 14:16:53 +0100
commit6d42a8f99cbe98201a0d52ab276f6929b66cfe4f (patch)
tree091c4b45223c68c14561783a71af9b9c7abe02f7 /include
parent8dbf5a11840ed4f4029de3780a063f7ef7736172 (diff)
when iterating over object properties, the private and protected properties are now skipped
Diffstat (limited to 'include')
-rw-r--r--include/valueiterator.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/valueiterator.h b/include/valueiterator.h
index 037f061..62ec175 100644
--- a/include/valueiterator.h
+++ b/include/valueiterator.h
@@ -149,15 +149,15 @@ private:
/**
* Read current key and value
- * @return ValueIterator
+ * @return bool
*/
- ValueIterator &read();
+ bool read();
/**
* Invalidate the iterator
- * @return ValueIterator
+ * @return bool
*/
- ValueIterator &invalidate();
+ bool invalidate();
};
/**