| 174 | int pos; |
| 175 | inline void next(const opNode *ref) { ++pos; } |
| 176 | inline void begin(const opNode *ref) { pos = 0; } |
| 177 | inline void end(const opNode *ref) { pos = ref->_attributes.size(); } |
| 178 | inline nodeAttribute &get(opNode *ref) { return ref->_attributes[pos]; } |
| 179 | inline const nodeAttribute &get(const opNode *ref) { |