diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:57:03 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 16:57:03 +0200 |
commit | 420fb6c9b3427f65cfe24411944ee46b58cfcfb4 (patch) | |
tree | 58269ba5ee7a22d2df004f03b100cc234b8c3f14 /synchronization.h | |
parent | 1.16 (diff) | |
download | FreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.tar.gz FreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.tar.bz2 FreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.zip |
1.17
Diffstat (limited to 'synchronization.h')
-rw-r--r-- | synchronization.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/synchronization.h b/synchronization.h index e7d6f474..82241f05 100644 --- a/synchronization.h +++ b/synchronization.h @@ -21,6 +21,8 @@ namespace FreeFileSync { public: SyncProcess(const bool useRecycler, + const bool copyFileSymLinks, + const bool traverseDirSymLinks, bool& warningSignificantDifference, StatusHandler* handler); @@ -30,7 +32,11 @@ namespace FreeFileSync bool synchronizeFile(const FileCompareLine& cmpLine, const SyncConfiguration& config); //false if nothing had to be done bool synchronizeFolder(const FileCompareLine& cmpLine, const SyncConfiguration& config); //false if nothing had to be done - const bool useRecycleBin; + void copyFileUpdating(const Zstring& source, const Zstring& target, const wxULongLong& sourceFileSize); + + const bool m_useRecycleBin; + const bool m_copyFileSymLinks; + const bool m_traverseDirSymLinks; bool& m_warningSignificantDifference; StatusHandler* statusUpdater; |