summaryrefslogtreecommitdiff
path: root/shared/shadow.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:02:17 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:02:17 +0200
commitb9203ee84953006547f4afd58f405874c87bf0dc (patch)
tree9e41f1533f120e9268e86658c52458630ffd718a /shared/shadow.h
parent3.0 (diff)
downloadFreeFileSync-b9203ee84953006547f4afd58f405874c87bf0dc.tar.gz
FreeFileSync-b9203ee84953006547f4afd58f405874c87bf0dc.tar.bz2
FreeFileSync-b9203ee84953006547f4afd58f405874c87bf0dc.zip
3.1
Diffstat (limited to 'shared/shadow.h')
-rw-r--r--shared/shadow.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/shared/shadow.h b/shared/shadow.h
index 8affdebf..ddb329bd 100644
--- a/shared/shadow.h
+++ b/shared/shadow.h
@@ -2,7 +2,7 @@
#define SHADOW_H_INCLUDED
#ifndef FFS_WIN
-header should be used in the windows build only!
+use in windows build only!
#endif
#include "zstring.h"
@@ -20,6 +20,9 @@ public:
Zstring makeShadowCopy(const Zstring& inputFile); //throw(FileError); returns filename on shadow copy
private:
+ ShadowCopy(const ShadowCopy&);
+ ShadowCopy& operator=(const ShadowCopy&);
+
bool isOkay();
Zstring realVolumeLast; //buffer last volume name
bgstack15