MCPcopy Create free account
hub / github.com/KhronosGroup/OpenCOLLADA / iterator

Class iterator

DAEValidator/library/include/XmlNodeSet.h:19–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17 const XmlNodeSet & operator = (XmlNodeSet && other);
18
19 class iterator
20 {
21 friend class XmlNodeSet;
22 public:
23 XmlNode operator*() const;
24 void operator++();
25 bool operator != (const iterator & other) const;
26
27 private:
28 iterator() = default;
29 iterator(xmlNodeSetPtr nodeSet);
30
31 private:
32 xmlNodeSetPtr mNodeSet = nullptr;
33 int mIndex = 0;
34 };
35
36 bool empty() const;
37 iterator begin() const;

Callers 2

beginMethod · 0.85
endMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected