| 25 | |
| 26 | |
| 27 | ProgressDialog::ProgressDialog(HINSTANCE hInst, CancelToken cancelToken, std::function<void(ProgressDialog*)> startFunction) |
| 28 | : _hInst(hInst), |
| 29 | _startFunction(startFunction), |
| 30 | _hSelf(0), |
| 31 | _numberOfSteps(0), |
| 32 | _completedSteps(0), |
| 33 | _hProgressOverall(0), |
| 34 | _hProgressCurrent(0), |
| 35 | _hStatus(0), |
| 36 | _cancelToken(cancelToken) |
| 37 | { |
| 38 | } |
| 39 | |
| 40 | |
| 41 |
nothing calls this directly
no outgoing calls
no test coverage detected