diff options
Diffstat (limited to 'SwifTools/CrashReporter.h')
-rw-r--r-- | SwifTools/CrashReporter.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/SwifTools/CrashReporter.h b/SwifTools/CrashReporter.h index 73eadb3..1efa801 100644 --- a/SwifTools/CrashReporter.h +++ b/SwifTools/CrashReporter.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2012 Isode Limited. + * Copyright (c) 2012-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once -#include <boost/shared_ptr.hpp> -#include <boost/filesystem.hpp> +#include <memory> #include <string> +#include <boost/filesystem.hpp> + namespace Swift { - class CrashReporter { - public: - CrashReporter(const boost::filesystem::path& path); + class CrashReporter { + public: + CrashReporter(const boost::filesystem::path& path, const std::string& dumpPrefix); - private: - struct Private; - boost::shared_ptr<Private> p; - }; + private: + struct Private; + std::shared_ptr<Private> p; + }; } |