From c581668d59fc839f42a9e42ff4b371b02789aaa3 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 20 Jul 2009 17:01:01 +0200 Subject: Daemon: added threaded CreateReport -> breaks CLI! --- lib/CommLayer/CommLayerServerDBus.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib/CommLayer/CommLayerServerDBus.h') diff --git a/lib/CommLayer/CommLayerServerDBus.h b/lib/CommLayer/CommLayerServerDBus.h index 86f6860..17b7fdc 100644 --- a/lib/CommLayer/CommLayerServerDBus.h +++ b/lib/CommLayer/CommLayerServerDBus.h @@ -20,12 +20,17 @@ class CCommLayerServerDBus virtual ~CCommLayerServerDBus(); virtual vector_crash_infos_t GetCrashInfos(const std::string &pSender); - virtual map_crash_report_t CreateReport(const std::string &pUUID,const std::string &pSender); + /*FIXME: fix CLI and remove this stub*/ + virtual map_crash_report_t CreateReport(const std::string &pUUID,const std::string &pSender){map_crash_report_t retval; return retval;}; + virtual uint64_t CreateReport_t(const std::string &pUUID,const std::string &pSender); virtual bool Report(map_crash_report_t pReport,const std::string &pSender); virtual bool DeleteDebugDump(const std::string& pUUID, const std::string& pSender); + virtual map_crash_report_t GetJobResult(uint64_t pJobID, const std::string& pSender); virtual void Crash(const std::string& arg1); virtual void AnalyzeComplete(map_crash_report_t arg1); virtual void Error(const std::string& arg1); + virtual void Update(const std::string& pDest, const std::string& pMessage); + virtual void JobDone(uint64_t pJobID); }; -- cgit