54 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::InfiniteLine *>
58 iterator() : m_context(nullptr), m_current(NULL_TAG)
83 return m_current == other.m_current && m_context == other.m_context;
88 return !operator == (other);
91 NXOPENCPPEXPORT value_type operator * ()
const;
108 m_context = other.m_context;
109 m_current = other.m_current;
110 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
111 m_state[i] = other.m_state[i];
113 NXOPENCPPEXPORT
void next();
116 unsigned int m_state[8];