]> git.tdb.fi Git - libs/core.git/blob - source/core/android/errorlogger.h
Add move semantics to Variant
[libs/core.git] / source / core / android / errorlogger.h
1 #ifndef MSP_CORE_ERRORLOGGER_ANDROID_H_
2 #define MSP_CORE_ERRORLOGGER_ANDROID_H_
3
4 #include <msp/debug/errorreporter.h>
5
6 namespace Msp {
7 namespace Android {
8
9 class ErrorLogger: public Debug::ErrorReporter
10 {
11 public:
12         bool report_uncaught_exception(const std::exception &) const override;
13 };
14
15 } // namespace Android
16 } // namespace Msp
17
18 #endif