83 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Unit *>
87 iterator() : m_context(nullptr), m_current(NULL_TAG)
112 return m_current == other.m_current && m_context == other.m_context;
117 return !operator == (other);
120 NXOPENCPPEXPORT value_type operator * ()
const;
137 m_context = other.m_context;
138 m_current = other.m_current;
139 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
140 m_state[i] = other.m_state[i];
142 NXOPENCPPEXPORT
void next();
145 unsigned int m_state[8];