| 281 | } |
| 282 | |
| 283 | void IPLProcess::notifyProgressEventHandler(int percent) |
| 284 | { |
| 285 | if(_progressHandler != NULL) |
| 286 | { |
| 287 | _progressHandler->updateProgress(percent); |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | void IPLProcess::registerPropertyChangedEventHandler(IPLPropertyChangedEventHandler *handler) |
| 292 | { |
nothing calls this directly
no test coverage detected