summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:06 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:06 +0200
commitfbe76102e941b9f1edaf236788e42678f05fdf9a (patch)
treef5f538316019fa89be8dc478103490c3a826f3ac /synchronization.h
parent3.8 (diff)
downloadFreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.gz
FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.bz2
FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.zip
3.9
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