From b67b664e6f3019a142996c5bdc3a2e8c32f4306a Mon Sep 17 00:00:00 2001 From: Zdenek Prikryl Date: Thu, 16 Apr 2009 17:54:20 +0200 Subject: - reporter plugins can tak an argiment - added "Reporters" option which allows report basic info after a crash occurs - fixed interface of plugins --- lib/Plugins/Logger.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Plugins/Logger.h') diff --git a/lib/Plugins/Logger.h b/lib/Plugins/Logger.h index f5db73f3..62b6a1d1 100644 --- a/lib/Plugins/Logger.h +++ b/lib/Plugins/Logger.h @@ -35,8 +35,8 @@ class CLogger : public CReporter CLogger(); virtual ~CLogger() {} - void LoadSettings(const std::string& pPath); - void Report(const map_crash_report_t& pCrashReport); + virtual void LoadSettings(const std::string& pPath); + virtual void Report(const map_crash_report_t& pCrashReport, const std::string& pArgs); }; -- cgit