diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-27 14:36:32 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-27 14:36:32 +0100 |
commit | e55e0b21be207ec21bca7cd6c6263a923e974e67 (patch) | |
tree | 07e66c37634fdd7991523d0beb88cd0b3144b486 /lib/Plugins/Catcut.h | |
parent | b81581a2e82197325789cb451d5e679e3291278e (diff) | |
download | abrt-e55e0b21be207ec21bca7cd6c6263a923e974e67.tar.gz abrt-e55e0b21be207ec21bca7cd6c6263a923e974e67.tar.xz abrt-e55e0b21be207ec21bca7cd6c6263a923e974e67.zip |
adding experimental Catcut plugin. Run-tested
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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 0000000..6938038 --- /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_ */ |