| 199 | } |
| 200 | |
| 201 | void DemoKeeper::notifyInvalidateNode(BaseAnimationNode* _sender) |
| 202 | { |
| 203 | wraps::BaseGraphView::EnumeratorNode node = mGraphView->getNodeEnumerator(); |
| 204 | while (node.next()) |
| 205 | { |
| 206 | BaseAnimationNode* anim_node = dynamic_cast<BaseAnimationNode*>(node.current()); |
| 207 | if (anim_node) |
| 208 | { |
| 209 | anim_node->invalidateNode(_sender); |
| 210 | } |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | void DemoKeeper::notifyNodeClosed(wraps::BaseGraphView* _sender, wraps::BaseGraphNode* _node) |
| 215 | { |
nothing calls this directly
no test coverage detected