X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fandroid%2Ferrorlogger.h;fp=source%2Fcore%2Fandroid%2Ferrorlogger.h;h=4512f09bb42c51b3122c0488ef9270aefba83af8;hb=211c503e709ffa8bec7b71b8004ecdeadf776c4c;hp=0000000000000000000000000000000000000000;hpb=e9606fcfd202207a029fff31f03b8e1a7a0d2963;p=libs%2Fcore.git diff --git a/source/core/android/errorlogger.h b/source/core/android/errorlogger.h new file mode 100644 index 0000000..4512f09 --- /dev/null +++ b/source/core/android/errorlogger.h @@ -0,0 +1,18 @@ +#ifndef MSP_CORE_ERRORLOGGER_ANDROID_H_ +#define MSP_CORE_ERRORLOGGER_ANDROID_H_ + +#include + +namespace Msp { +namespace Android { + +class ErrorLogger: public Debug::ErrorReporter +{ +public: + virtual bool report_uncaught_exception(const std::exception &) const; +}; + +} // namespace Android +} // namespace Msp + +#endif