74 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::PartMfg::ToleranceValidation *>
78 iterator() : m_context(nullptr), m_current(NULL_TAG)
103 return m_current == other.m_current && m_context == other.m_context;
108 return !operator == (other);
111 PARTMFGOPENCPPEXPORT value_type operator * ()
const;
128 m_context = other.m_context;
129 m_current = other.m_current;
130 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
131 m_state[i] = other.m_state[i];
133 PARTMFGOPENCPPEXPORT
void next();
136 unsigned int m_state[8];