| 19 | #include "vectoriterator.h" |
| 20 | |
| 21 | VectorIterator::VectorIterator(const QList<Value*>& list) : |
| 22 | ValueIterator(nullptr), |
| 23 | items(list), |
| 24 | index(0) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | ValueIterator& VectorIterator::operator++() |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected