diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:14:37 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:14:37 +0200 |
commit | 8bf668665b107469086f16cb8ad23e47d479d2b4 (patch) | |
tree | 66a91ef06a8caa7cd6819dcbe1860693d3eda8d5 /synchronization.h | |
parent | 3.21 (diff) | |
download | FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.tar.gz FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.tar.bz2 FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.zip |
4.0
Diffstat (limited to 'synchronization.h')
-rw-r--r-- | synchronization.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/synchronization.h b/synchronization.h index 9ee0667a..7cf93b45 100644 --- a/synchronization.h +++ b/synchronization.h @@ -83,10 +83,13 @@ public: bool transactionalFileCopy, ProcessCallback& handler); - //CONTRACT: syncConfig must have SAME SIZE folderCmp and correspond per row! + //CONTRACT: syncConfig must have SAME SIZE folderCmp and correspond row-wise! void startSynchronizationProcess(const std::vector<FolderPairSyncCfg>& syncConfig, FolderComparison& folderCmp); private: + SyncProcess(const SyncProcess&); + SyncProcess& operator=(const SyncProcess&); + friend class SynchronizeFolderPair; const bool verifyCopiedFiles_; |