| 346 | } |
| 347 | |
| 348 | void XN_CALLBACK_TYPE GeneratorWatcher::HandleGenerationRunningChange(ProductionNode& /*node*/, void* pCookie) |
| 349 | { |
| 350 | GeneratorWatcher *pThis = (GeneratorWatcher*)pCookie; |
| 351 | if (pThis == NULL) |
| 352 | { |
| 353 | XN_ASSERT(FALSE); |
| 354 | return; |
| 355 | } |
| 356 | |
| 357 | pThis->NotifyIntPropChanged(XN_PROP_IS_GENERATING, pThis->m_generator.IsGenerating()); |
| 358 | } |
| 359 | |
| 360 | void XN_CALLBACK_TYPE GeneratorWatcher::HandleMirrorChange(ProductionNode& /*node*/, void* pCookie) |
| 361 | { |
nothing calls this directly
no test coverage detected