diff options
Diffstat (limited to 'lib/Plugins/Catcut.h')
-rw-r--r-- | lib/Plugins/Catcut.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/Plugins/Catcut.h b/lib/Plugins/Catcut.h new file mode 100644 index 00000000..69380387 --- /dev/null +++ b/lib/Plugins/Catcut.h @@ -0,0 +1,26 @@ +#ifndef CATCUT_H_ +#define CATCUT_H_ + +#include "Plugin.h" +#include "Reporter.h" + +class CReporterCatcut : public CReporter +{ + private: + std::string m_sCatcutURL; + std::string m_sLogin; + std::string m_sPassword; + bool m_bNoSSLVerify; + + public: + CReporterCatcut(); + virtual ~CReporterCatcut(); + + virtual void SetSettings(const map_plugin_settings_t& pSettings); + virtual map_plugin_settings_t GetSettings(); + + virtual std::string Report(const map_crash_report_t& pCrashReport, + const std::string& pArgs); +}; + +#endif /* CATCUT_H_ */ |