From 821c30ceca2885836fb2aeafaa03ab0c0f1b1809 Mon Sep 17 00:00:00 2001 From: Zdenek Prikryl Date: Wed, 20 May 2009 11:16:33 +0200 Subject: initial unix socket interface --- lib/CommLayer/CommLayerServerDBus.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lib/CommLayer/CommLayerServerDBus.h') diff --git a/lib/CommLayer/CommLayerServerDBus.h b/lib/CommLayer/CommLayerServerDBus.h index b5d3180..3efe480 100644 --- a/lib/CommLayer/CommLayerServerDBus.h +++ b/lib/CommLayer/CommLayerServerDBus.h @@ -18,14 +18,14 @@ class CCommLayerServerDBus public: CCommLayerServerDBus(); virtual ~CCommLayerServerDBus(); - - virtual vector_crash_infos_t GetCrashInfos(const std::string &pDBusSender); - virtual map_crash_report_t CreateReport(const std::string &pUUID,const std::string &pDBusSender); + + virtual vector_crash_infos_t GetCrashInfos(const std::string &pSender); + virtual map_crash_report_t CreateReport(const std::string &pUUID,const std::string &pSender); virtual bool Report(map_crash_report_t pReport); - virtual bool DeleteDebugDump(const std::string& pUUID, const std::string& pDBusSender); + virtual bool DeleteDebugDump(const std::string& pUUID, const std::string& pSender); - void Crash(const std::string& arg1); - void AnalyzeComplete(map_crash_report_t arg1); - void Error(const std::string& arg1); + virtual void Crash(const std::string& arg1); + virtual void AnalyzeComplete(map_crash_report_t arg1); + virtual void Error(const std::string& arg1); }; -- cgit