111 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Annotations::BusinessModifier *>
115 iterator() : m_context(nullptr), m_current(NULL_TAG)
140 return m_current == other.m_current && m_context == other.m_context;
145 return !operator == (other);
148 NXOPENCPP_ANNOTATIONSEXPORT value_type operator * ()
const;
165 m_context = other.m_context;
166 m_current = other.m_current;
167 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
168 m_state[i] = other.m_state[i];
170 NXOPENCPP_ANNOTATIONSEXPORT
void next();
173 unsigned int m_state[8];