98 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Annotations::DimensionSet *>
102 iterator() : m_context(nullptr), m_current(NULL_TAG)
127 return m_current == other.m_current && m_context == other.m_context;
132 return !operator == (other);
135 NXOPENCPP_ANNOTATIONSEXPORT value_type operator * ()
const;
152 m_context = other.m_context;
153 m_current = other.m_current;
154 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
155 m_state[i] = other.m_state[i];
157 NXOPENCPP_ANNOTATIONSEXPORT
void next();
160 unsigned int m_state[8];