summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/CommLayerServerDBus.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CommLayer/CommLayerServerDBus.h')
-rw-r--r--lib/CommLayer/CommLayerServerDBus.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/CommLayer/CommLayerServerDBus.h b/lib/CommLayer/CommLayerServerDBus.h
index 86f68601..17b7fdc6 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);
};