67 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Annotations::Dimension *>
71 iterator() : m_context(nullptr), m_current(NULL_TAG)
96 return m_current == other.m_current && m_context == other.m_context;
101 return !operator == (other);
104 NXOPENCPP_ANNOTATIONSEXPORT value_type operator * ()
const;
121 m_context = other.m_context;
122 m_current = other.m_current;
123 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
124 m_state[i] = other.m_state[i];
126 NXOPENCPP_ANNOTATIONSEXPORT
void next();
129 unsigned int m_state[8];