diff options
author | Zdenek Prikryl <zprikryl@redhat.com> | 2009-03-19 14:29:35 +0100 |
---|---|---|
committer | Zdenek Prikryl <zprikryl@redhat.com> | 2009-03-19 14:29:35 +0100 |
commit | d698cf9bca1ac7f5c1a989161ea959a895900273 (patch) | |
tree | 1f63a97e9b7aa3eb50ccedc6afa26ecd69ed52d4 /lib/Plugins/Logger.h | |
parent | 700d189946cecea3461cb89b5a755dbfdb578e71 (diff) | |
download | abrt-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/Logger.h')
-rw-r--r-- | lib/Plugins/Logger.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/Plugins/Logger.h b/lib/Plugins/Logger.h index 9a4e304f..f6dcffd8 100644 --- a/lib/Plugins/Logger.h +++ b/lib/Plugins/Logger.h @@ -35,21 +35,17 @@ class CLogger : public CReporter CLogger(); virtual ~CLogger() {} - 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, + CLogger, "Logger", "0.0.1", "Write a report to a specific file", "zprikryl@redhat.com", "https://fedorahosted.org/crash-catcher/wiki"); -PLUGIN_INIT(CLogger); - #endif /* LOGGER_H_ */ |