blob: 693803878194f281716b9266c1f94b6437f7204f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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_ */
|