From 88a8b528e20013c0aa3cc6bcd9659b0b5ddd9170 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:20:07 +0200 Subject: 5.4 --- RealtimeSync/watcher.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'RealtimeSync/watcher.h') diff --git a/RealtimeSync/watcher.h b/RealtimeSync/watcher.h index 17252535..6d68d5be 100644 --- a/RealtimeSync/watcher.h +++ b/RealtimeSync/watcher.h @@ -22,7 +22,7 @@ class WaitCallback { public: virtual ~WaitCallback() {} - virtual void requestUiRefresh() = 0; //opportunity to abort must be implemented in a frequently executed method like requestUiRefresh() + virtual void requestUiRefresh(bool readyForSync = false) = 0; //opportunity to abort must be implemented in a frequently executed method like requestUiRefresh() }; @@ -45,7 +45,7 @@ WaitResult waitForChanges(const std::vector& dirNamesNonFmt, //non-formatted dirnames that yet require call to getFormattedDirectoryName(); empty directories must be checked by caller! WaitCallback& statusHandler); //throw FileError -//wait until all directories become available (again) +//wait until all directories become available (again) + logs in network share void waitForMissingDirs(const std::vector& dirNamesNonFmt, WaitCallback& statusHandler); //throw FileError } -- cgit