| 616 | ////////////////////////////////////// |
| 617 | |
| 618 | QueueCreateFile::QueueCreateFile(HWND hNotify, const char * filePath, int notifyCode, void * notifyData) : |
| 619 | QueueOperation(QueueTypeFileCreate, hNotify, notifyCode, notifyData) |
| 620 | { |
| 621 | m_filePath = SU::strdup(filePath); |
| 622 | } |
| 623 | |
| 624 | QueueCreateFile::~QueueCreateFile() { |
| 625 | SU::free(m_filePath); |
nothing calls this directly
no outgoing calls
no test coverage detected