diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:03:20 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:03:20 +0200 |
commit | 528635604eea1d8c679a3d038e2f00030ef72444 (patch) | |
tree | 9c3cbec29aa7d3e209939662e040b9342c9e7400 /synchronization.h | |
parent | 3.1 (diff) | |
download | FreeFileSync-528635604eea1d8c679a3d038e2f00030ef72444.tar.gz FreeFileSync-528635604eea1d8c679a3d038e2f00030ef72444.tar.bz2 FreeFileSync-528635604eea1d8c679a3d038e2f00030ef72444.zip |
3.2
Diffstat (limited to 'synchronization.h')
-rw-r--r-- | synchronization.h | 8 |
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; |