129 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Annotations::DatumTarget *>
133 iterator() : m_context(nullptr), m_current(NULL_TAG)
158 return m_current == other.m_current && m_context == other.m_context;
163 return !operator == (other);
166 NXOPENCPP_ANNOTATIONSEXPORT value_type operator * ()
const;
183 m_context = other.m_context;
184 m_current = other.m_current;
185 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
186 m_state[i] = other.m_state[i];
188 NXOPENCPP_ANNOTATIONSEXPORT
void next();
191 unsigned int m_state[8];