summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
Diffstat (limited to 'synchronization.h')
-rw-r--r--synchronization.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/synchronization.h b/synchronization.h
index f4b68d8f..afa36dff 100644
--- a/synchronization.h
+++ b/synchronization.h
@@ -7,13 +7,13 @@
#ifndef SYNCHRONIZATION_H_INCLUDED
#define SYNCHRONIZATION_H_INCLUDED
-#include "fileHierarchy.h"
-#include "library/processXml.h"
+#include "file_hierarchy.h"
+#include "library/process_xml.h"
class StatusHandler;
-namespace FreeFileSync
+namespace ffs3
{
class SyncStatistics
@@ -75,6 +75,7 @@ public:
SyncProcess(xmlAccess::OptionalDialogs& warnings,
bool verifyCopiedFiles,
bool copyLockedFiles,
+ bool copyFilePermissions,
StatusHandler& handler);
//CONTRACT: syncConfig must have SAME SIZE folderCmp and correspond per row!
@@ -83,8 +84,9 @@ public:
private:
friend class SynchronizeFolderPair;
- const bool m_verifyCopiedFiles;
+ const bool verifyCopiedFiles_;
const bool copyLockedFiles_;
+ const bool copyFilePermissions_;
//warnings
xmlAccess::OptionalDialogs& m_warnings;
bgstack15