| 24 | class ProgressWorker : public AsyncProgressWorkerBase<T> { |
| 25 | public: |
| 26 | ProgressWorker( |
| 27 | Callback *callback |
| 28 | , Callback *progress |
| 29 | , int milliseconds |
| 30 | , int iters) |
| 31 | : AsyncProgressWorkerBase<T>(callback), progress(progress) |
| 32 | , milliseconds(milliseconds), iters(iters) {} |
| 33 | |
| 34 | ~ProgressWorker() { |
| 35 | delete progress; |
nothing calls this directly
no outgoing calls
no test coverage detected