summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Kerneloops.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/Kerneloops.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/Kerneloops.h')
-rw-r--r--lib/Plugins/Kerneloops.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/lib/Plugins/Kerneloops.h b/lib/Plugins/Kerneloops.h
index e8137b63..52cba4e5 100644
--- a/lib/Plugins/Kerneloops.h
+++ b/lib/Plugins/Kerneloops.h
@@ -26,30 +26,26 @@
#define __INCLUDE_GUARD_KERNELOOPS_H_
#include "Plugin.h"
-#include "Application.h"
+#include "Analyzer.h"
#include <string>
-class CApplicationKerneloops : public CApplication
+class CAnalyzerKerneloops : public CAnalyzer
{
public:
- CApplicationKerneloops() {}
- virtual ~CApplicationKerneloops() {}
+ virtual ~CAnalyzerKerneloops() {}
std::string GetLocalUUID(const std::string& pDebugDumpDir);
std::string GetGlobalUUID(const std::string& pDebugDumpDir);
void CreateReport(const std::string& pDebugDumpDir) {}
void Init();
- void DeInit() {}
- void SetSettings(const map_settings_t& pSettings) {}
};
-PLUGIN_INFO(APPLICATION,
+PLUGIN_INFO(ANALYZER,
+ CAnalyzerKerneloops,
"Kerneloops",
"0.0.1",
"Abrt's Kerneloops plugin.",
"anton@redhat.com",
"https://people.redhat.com/aarapov");
-PLUGIN_INIT(CApplicationKerneloops);
-
#endif