96 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Annotations::Datum *>
100 iterator() : m_context(nullptr), m_current(NULL_TAG)
125 return m_current == other.m_current && m_context == other.m_context;
130 return !operator == (other);
133 NXOPENCPP_ANNOTATIONSEXPORT value_type operator * ()
const;
150 m_context = other.m_context;
151 m_current = other.m_current;
152 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
153 m_state[i] = other.m_state[i];
155 NXOPENCPP_ANNOTATIONSEXPORT
void next();
158 unsigned int m_state[8];