195 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Drawings::DraftingView *>
199 iterator() : m_context(nullptr), m_current(NULL_TAG)
224 return m_current == other.m_current && m_context == other.m_context;
229 return !operator == (other);
232 NXOPENCPP_DRAWINGSEXPORT value_type operator * ()
const;
249 m_context = other.m_context;
250 m_current = other.m_current;
251 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
252 m_state[i] = other.m_state[i];
254 NXOPENCPP_DRAWINGSEXPORT
void next();
257 unsigned int m_state[8];