summaryrefslogtreecommitdiff
path: root/structures.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 /structures.h
parent3.17 (diff)
downloadFreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.gz
FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.bz2
FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.zip
3.18
Diffstat (limited to 'structures.h')
-rw-r--r--structures.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/structures.h b/structures.h
index c492ed85..de2e8149 100644
--- a/structures.h
+++ b/structures.h
@@ -12,7 +12,7 @@
#include "shared/zstring.h"
#include "shared/system_constants.h"
#include "shared/assert_static.h"
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include "shared/int64.h"
@@ -106,10 +106,6 @@ wxString getDescription(SyncOperation op);
wxString getSymbol(SyncOperation op);
-//Exception class used to abort the "compare" and "sync" process
-class AbortThisProcess {};
-
-
struct DirectionSet
{
DirectionSet() :
@@ -297,7 +293,7 @@ struct FolderPairEnh //enhanced folder pairs with (optional) alternate configura
FolderPairEnh(const Zstring& leftDir,
const Zstring& rightDir,
- const boost::shared_ptr<const AlternateSyncConfig>& syncConfig,
+ const std::shared_ptr<const AlternateSyncConfig>& syncConfig,
const FilterConfig& filter) :
leftDirectory(leftDir),
rightDirectory(rightDir) ,
@@ -307,7 +303,7 @@ struct FolderPairEnh //enhanced folder pairs with (optional) alternate configura
Zstring leftDirectory;
Zstring rightDirectory;
- boost::shared_ptr<const AlternateSyncConfig> altSyncConfig; //optional
+ std::shared_ptr<const AlternateSyncConfig> altSyncConfig; //optional
FilterConfig localFilter;
};
bgstack15