summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/Observer.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CommLayer/Observer.h')
-rw-r--r--lib/CommLayer/Observer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CommLayer/Observer.h b/lib/CommLayer/Observer.h
index 7803e8af..9b476f1f 100644
--- a/lib/CommLayer/Observer.h
+++ b/lib/CommLayer/Observer.h
@@ -3,6 +3,7 @@
#include "CrashTypes.h"
#include <string>
+#include <stdint.h>
class CObserver {
public:
@@ -14,8 +15,10 @@ class CObserver {
/* this should be implemented in daemon */
virtual vector_crash_infos_t GetCrashInfos(const std::string &pSender) = 0;
virtual map_crash_report_t CreateReport(const std::string &pUUID,const std::string &pSender) = 0;
+ virtual uint64_t CreateReport_t(const std::string &pUUID,const std::string &pSender){std::cout << "DEFAULT OBSERVER";return 0;};
virtual bool Report(map_crash_report_t pReport, const std::string &pSender) = 0;
virtual bool DeleteDebugDump(const std::string& pUUID, const std::string& pSender) = 0;
+ virtual map_crash_report_t GetJobResult(uint64_t pJobID, const std::string &pSender) = 0;
};
#endif /* OBSERVER_H_ */