| 25 | const int ConditionCount = 3; |
| 26 | |
| 27 | FTPQueue::FTPQueue(FTPClientWrapper* wrapper) : |
| 28 | m_wrapper(wrapper), |
| 29 | m_running(false), |
| 30 | m_stopping(false), |
| 31 | m_performing(false), |
| 32 | m_activeOp(NULL) |
| 33 | { |
| 34 | m_monitor = new Monitor(ConditionCount); |
| 35 | m_wrapper->SetProgressMonitor(this); |
| 36 | } |
| 37 | |
| 38 | FTPQueue::~FTPQueue() { |
| 39 | delete m_monitor; |
nothing calls this directly
no test coverage detected