| 245 | }; |
| 246 | |
| 247 | class QueueCreateFile : public QueueOperation { |
| 248 | public: |
| 249 | QueueCreateFile(HWND hNotify, const char * filePath, int notifyCode = 0, void * notifyData = NULL); |
| 250 | virtual ~QueueCreateFile(); |
| 251 | |
| 252 | virtual int Perform(); |
| 253 | |
| 254 | virtual bool Equals(const QueueOperation & other); |
| 255 | |
| 256 | virtual char* GetFilePath(); |
| 257 | protected: |
| 258 | char* m_filePath; |
| 259 | }; |
| 260 | |
| 261 | class QueueDeleteFile : public QueueOperation { |
| 262 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected