]> git.tdb.fi Git - libs/core.git/blob - source/core/android/errorlogger.h
4512f09bb42c51b3122c0488ef9270aefba83af8
[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         virtual bool report_uncaught_exception(const std::exception &) const;
13 };
14
15 } // namespace Android
16 } // namespace Msp
17
18 #endif