151 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Annotations::Centerline *>
155 iterator() : m_context(nullptr), m_current(NULL_TAG)
180 return m_current == other.m_current && m_context == other.m_context;
185 return !operator == (other);
188 NXOPENCPP_ANNOTATIONSEXPORT value_type operator * ()
const;
205 m_context = other.m_context;
206 m_current = other.m_current;
207 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
208 m_state[i] = other.m_state[i];
210 NXOPENCPP_ANNOTATIONSEXPORT
void next();
213 unsigned int m_state[8];