82 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Annotations::Fcf *>
86 iterator() : m_context(nullptr), m_current(NULL_TAG)
111 return m_current == other.m_current && m_context == other.m_context;
116 return !operator == (other);
119 NXOPENCPP_ANNOTATIONSEXPORT value_type operator * ()
const;
136 m_context = other.m_context;
137 m_current = other.m_current;
138 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
139 m_state[i] = other.m_state[i];
141 NXOPENCPP_ANNOTATIONSEXPORT
void next();
144 unsigned int m_state[8];