287 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Annotations::PmiAttribute *>
291 iterator() : m_context(nullptr), m_current(NULL_TAG)
316 return m_current == other.m_current && m_context == other.m_context;
321 return !operator == (other);
324 NXOPENCPP_ANNOTATIONSEXPORT value_type operator * ()
const;
341 m_context = other.m_context;
342 m_current = other.m_current;
343 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
344 m_state[i] = other.m_state[i];
346 NXOPENCPP_ANNOTATIONSEXPORT
void next();
349 unsigned int m_state[8];