summaryrefslogtreecommitdiffstats
path: root/src/Daemon/CommLayerServer.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-08-25 14:00:22 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-08-25 14:00:22 +0200
commit3008b32dd0f78b0b2c09e05a7b47080c7cb75d38 (patch)
treef5bd107a868b4cae9016481e1cc9abdaea9409f5 /src/Daemon/CommLayerServer.h
parent5bf3512df0529960ed4980251825b49a12eff894 (diff)
downloadabrt-3008b32dd0f78b0b2c09e05a7b47080c7cb75d38.tar.gz
abrt-3008b32dd0f78b0b2c09e05a7b47080c7cb75d38.tar.xz
abrt-3008b32dd0f78b0b2c09e05a7b47080c7cb75d38.zip
remove CreateReport() method from server machinery; add comments about DBus
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Daemon/CommLayerServer.h')
-rw-r--r--src/Daemon/CommLayerServer.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Daemon/CommLayerServer.h b/src/Daemon/CommLayerServer.h
index 38dbac9..afc9ecf 100644
--- a/src/Daemon/CommLayerServer.h
+++ b/src/Daemon/CommLayerServer.h
@@ -26,18 +26,17 @@ class CCommLayerServer {
public:
CCommLayerServer();
virtual ~CCommLayerServer();
+
/* observer */
void Attach(CObserver *pObs);
void Detach(CObserver *pObs);
void Notify(const std::string& pMessage);
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 report_status_t Report(const map_crash_report_t& pReport, const std::string& pSender) = 0;
virtual bool DeleteDebugDump(const std::string& pUUID, const std::string& pSender) = 0;
- public:
- /* just stubs to be called when not implemented in specific comm layer */
+ /* just stubs to be called when not implemented in specific comm layer */
virtual void Crash(const std::string& arg1) {}
virtual void AnalyzeComplete(const map_crash_report_t& arg1) {}
virtual void Error(const std::string& arg1) {}