| 15 | class ProgressWorker : public AsyncProgressWorker { |
| 16 | public: |
| 17 | ProgressWorker( |
| 18 | Callback *callback |
| 19 | , Callback *progress |
| 20 | , int milliseconds |
| 21 | , int iters) |
| 22 | : AsyncProgressWorker(callback), progress(progress) |
| 23 | , milliseconds(milliseconds), iters(iters) {} |
| 24 | |
| 25 | ~ProgressWorker() { |
| 26 | delete progress; |
nothing calls this directly
no outgoing calls
no test coverage detected