117 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::PartMfg::Element *>
121 iterator() : m_context(nullptr), m_current(NULL_TAG)
146 return m_current == other.m_current && m_context == other.m_context;
151 return !operator == (other);
154 PARTMFGOPENCPPEXPORT value_type operator * ()
const;
171 m_context = other.m_context;
172 m_current = other.m_current;
173 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
174 m_state[i] = other.m_state[i];
176 PARTMFGOPENCPPEXPORT
void next();
179 unsigned int m_state[8];