summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
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