70 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Tooling::HoleTableBuilder *>
74 iterator() : m_context(nullptr), m_current(NULL_TAG)
99 return m_current == other.m_current && m_context == other.m_context;
104 return !operator == (other);
107 NXOPENCPP_TOOLINGEXPORT value_type operator * ()
const;
124 m_context = other.m_context;
125 m_current = other.m_current;
126 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
127 m_state[i] = other.m_state[i];
129 NXOPENCPP_TOOLINGEXPORT
void next();
132 unsigned int m_state[8];