summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/KerneloopsReporter.h
diff options
context:
space:
mode:
authorZdenek Prikryl <zprikryl@redhat.com>2009-03-19 14:29:35 +0100
committerZdenek Prikryl <zprikryl@redhat.com>2009-03-19 14:29:35 +0100
commitd698cf9bca1ac7f5c1a989161ea959a895900273 (patch)
tree1f63a97e9b7aa3eb50ccedc6afa26ecd69ed52d4 /lib/Plugins/KerneloopsReporter.h
parent700d189946cecea3461cb89b5a755dbfdb578e71 (diff)
downloadabrt-d698cf9bca1ac7f5c1a989161ea959a895900273.tar.gz
abrt-d698cf9bca1ac7f5c1a989161ea959a895900273.tar.xz
abrt-d698cf9bca1ac7f5c1a989161ea959a895900273.zip
replaced language and application plugins by analyzer plugin
added action plugin simplify plugin iface
Diffstat (limited to 'lib/Plugins/KerneloopsReporter.h')
-rw-r--r--lib/Plugins/KerneloopsReporter.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/lib/Plugins/KerneloopsReporter.h b/lib/Plugins/KerneloopsReporter.h
index e7a96681..88628077 100644
--- a/lib/Plugins/KerneloopsReporter.h
+++ b/lib/Plugins/KerneloopsReporter.h
@@ -37,19 +37,17 @@ class CKerneloopsReporter : public CReporter
public:
CKerneloopsReporter();
virtual ~CKerneloopsReporter() {}
- void Init() {}
- void DeInit() {}
- void SetSettings(const map_settings_t& pSettings);
+
+ void LoadSettings(const std::string& pPath);
void Report(const crash_report_t& pReport);
};
PLUGIN_INFO(REPORTER,
- "KerneloopsReporter",
- "0.0.1",
- "Sends the Kerneloops crash information to Kerneloopsoops.org",
- "anton@redhat.com",
- "http://people.redhat.com/aarapov");
-
-PLUGIN_INIT(CKerneloopsReporter);
+ CKerneloopsReporter,
+ "KerneloopsReporter",
+ "0.0.1",
+ "Sends the Kerneloops crash information to Kerneloopsoops.org",
+ "anton@redhat.com",
+ "http://people.redhat.com/aarapov");
#endif