| 123 | explicit ConstAccessor(const GenericMap* map) : m_Accessor(&map->tree) {} |
| 124 | |
| 125 | const KeyValuePair* current() const { return m_Accessor.current(); } |
| 126 | |
| 127 | bool getFirst() { return m_Accessor.getFirst(); } |
| 128 | bool getNext() { return m_Accessor.getNext(); } |