summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
Diffstat (limited to 'synchronization.h')
-rw-r--r--synchronization.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/synchronization.h b/synchronization.h
index 87842249..53b17091 100644
--- a/synchronization.h
+++ b/synchronization.h
@@ -63,10 +63,11 @@ std::vector<FolderPairSyncCfg> extractSyncCfg(const MainConfiguration& mainCfg);
class SyncProcess
{
public:
- SyncProcess(const bool copyFileSymLinks,
- const bool traverseDirSymLinks,
+ SyncProcess(bool copyFileSymLinks,
+ bool traverseDirSymLinks,
xmlAccess::OptionalDialogs& warnings,
- const bool verifyCopiedFiles,
+ bool verifyCopiedFiles,
+ bool copyLockedFiles,
StatusHandler& handler);
//CONTRACT: syncConfig must have SAME SIZE folderCmp and correspond per row!
@@ -78,6 +79,7 @@ private:
const bool m_copyFileSymLinks;
const bool m_traverseDirSymLinks;
const bool m_verifyCopiedFiles;
+ const bool copyLockedFiles_;
//warnings
xmlAccess::OptionalDialogs& m_warnings;
bgstack15