summaryrefslogtreecommitdiff
path: root/shared/shadow.h
diff options
context:
space:
mode:
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