summaryrefslogtreecommitdiff
path: root/ui/batch_status_handler.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:17 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:17 +0200
commitb654dbfa5f3e4a4d02f72023f7c5895635aa6396 (patch)
tree8c1dfe7f638c0fc7afc1d08bc2fc0fd0f8646e5e /ui/batch_status_handler.h
parent3.17 (diff)
downloadFreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.gz
FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.bz2
FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.zip
3.18
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