summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:57:03 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:57:03 +0200
commit420fb6c9b3427f65cfe24411944ee46b58cfcfb4 (patch)
tree58269ba5ee7a22d2df004f03b100cc234b8c3f14 /synchronization.h
parent1.16 (diff)
downloadFreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.tar.gz
FreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.tar.bz2
FreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.zip
1.17
Diffstat (limited to 'synchronization.h')
-rw-r--r--synchronization.h8
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;
bgstack15