| 2218 | class AsyncProgressWorkerBase : public AsyncBareProgressWorker<T> { |
| 2219 | public: |
| 2220 | explicit AsyncProgressWorkerBase( |
| 2221 | Callback *callback_, |
| 2222 | const char* resource_name = "nan:AsyncProgressWorkerBase") |
| 2223 | : AsyncBareProgressWorker<T>(callback_, resource_name), asyncdata_(NULL), |
| 2224 | asyncsize_(0) { |
| 2225 | } |
| 2226 | |
| 2227 | virtual ~AsyncProgressWorkerBase() { |
| 2228 | delete[] asyncdata_; |
nothing calls this directly
no outgoing calls
no test coverage detected