summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:15:39 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:15:39 +0200
commitd2854834e18443876c8f75e0a7f3b88d1d549fc4 (patch)
treee967b628081e50abc7c34cd264e6586271c7e728 /synchronization.h
parent4.1 (diff)
downloadFreeFileSync-d2854834e18443876c8f75e0a7f3b88d1d549fc4.tar.gz
FreeFileSync-d2854834e18443876c8f75e0a7f3b88d1d549fc4.tar.bz2
FreeFileSync-d2854834e18443876c8f75e0a7f3b88d1d549fc4.zip
4.2
Diffstat (limited to 'synchronization.h')
-rw-r--r--synchronization.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/synchronization.h b/synchronization.h
index 025b7ab0..4e11d5a9 100644
--- a/synchronization.h
+++ b/synchronization.h
@@ -10,6 +10,7 @@
#include "file_hierarchy.h"
#include "lib/process_xml.h"
#include "lib/status_handler.h"
+#include <zen/process_status.h>
namespace zen
@@ -81,6 +82,7 @@ public:
bool copyLockedFiles,
bool copyFilePermissions,
bool transactionalFileCopy,
+ bool runWithBackgroundPriority,
ProcessCallback& handler);
//CONTRACT: syncConfig must have SAME SIZE folderCmp and correspond row-wise!
@@ -99,8 +101,9 @@ private:
//warnings
xmlAccess::OptionalDialogs& m_warnings;
-
ProcessCallback& procCallback;
+
+std::unique_ptr<ScheduleForBackgroundProcessing> procBackground;
};
bgstack15