summaryrefslogtreecommitdiff
path: root/ui/batch_status_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/batch_status_handler.h')
-rw-r--r--ui/batch_status_handler.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/batch_status_handler.h b/ui/batch_status_handler.h
index 0e03141e..a7c16488 100644
--- a/ui/batch_status_handler.h
+++ b/ui/batch_status_handler.h
@@ -16,6 +16,9 @@
class LogFile;
class SyncStatus;
+//Exception class used to abort the "compare" and "sync" process
+class BatchAbortProcess {};
+
class BatchStatusHandler : public StatusHandler
{
@@ -50,7 +53,7 @@ private:
int& returnValue;
SyncStatus syncStatusFrame; //the window managed by SyncStatus has longer lifetime than this handler!
- boost::shared_ptr<LogFile> logFile; //optional!
+ std::shared_ptr<LogFile> logFile; //optional!
};
bgstack15