| 235 | } |
| 236 | |
| 237 | void VisualDictionaryApp::update() |
| 238 | { |
| 239 | if( mDictionary->isCompleteWord( mCurrentNode.getWord() ) ){ |
| 240 | mCenterState.update( mCurrentNode ); |
| 241 | } |
| 242 | |
| 243 | // erase any nodes which have been marked as ready to be deleted |
| 244 | mDyingNodes.remove_if( bind( &WordNode::shouldBeDeleted, std::placeholders::_1 ) ); |
| 245 | } |
| 246 | |
| 247 | void VisualDictionaryApp::draw() |
| 248 | { |
nothing calls this directly
no test coverage detected