diff options
author | Daniel Wilhelm <daniel@wili.li> | 2015-10-02 14:55:19 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2015-10-02 14:55:19 +0200 |
commit | 46fc289a8776ba253e97d01d6948fb1031ea1973 (patch) | |
tree | b16a99c60f21b04c001f29862bf2ee16ae3a0e00 /zen/notify_removal.h | |
parent | 6.15 (diff) | |
download | FreeFileSync-46fc289a8776ba253e97d01d6948fb1031ea1973.tar.gz FreeFileSync-46fc289a8776ba253e97d01d6948fb1031ea1973.tar.bz2 FreeFileSync-46fc289a8776ba253e97d01d6948fb1031ea1973.zip |
7.0
Diffstat (limited to 'zen/notify_removal.h')
-rw-r--r-- | zen/notify_removal.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/zen/notify_removal.h b/zen/notify_removal.h deleted file mode 100644 index 08d75818..00000000 --- a/zen/notify_removal.h +++ /dev/null @@ -1,34 +0,0 @@ -// ************************************************************************** -// * This file is part of the FreeFileSync project. It is distributed under * -// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 * -// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved * -// ************************************************************************** - -#ifndef NOTIFY_H_INCLUDED_257804267562 -#define NOTIFY_H_INCLUDED_257804267562 - -#include <memory> -#include "win.h" //includes "windows.h" -#include "file_error.h" - -//handle (user-) request for device removal via template method pattern -//evaluate directly after processing window messages -class NotifyRequestDeviceRemoval -{ -public: - NotifyRequestDeviceRemoval(HANDLE hDir); //throw FileError - virtual ~NotifyRequestDeviceRemoval(); - -private: - virtual void onRequestRemoval(HANDLE hnd) = 0; //throw()! - //NOTE: onRemovalFinished is NOT guaranteed to execute after onRequestRemoval()! but most likely will - virtual void onRemovalFinished(HANDLE hnd, bool successful) = 0; //throw()! - - NotifyRequestDeviceRemoval (NotifyRequestDeviceRemoval&) = delete; - NotifyRequestDeviceRemoval& operator=(NotifyRequestDeviceRemoval&) = delete; - - class Pimpl; - std::unique_ptr<Pimpl> pimpl; -}; - -#endif //NOTIFY_H_INCLUDED_257804267562 |