diff options
| author | Zdenek Prikryl <zprikryl@redhat.com> | 2009-09-08 17:08:16 +0200 |
|---|---|---|
| committer | Zdenek Prikryl <zprikryl@redhat.com> | 2009-09-08 17:08:16 +0200 |
| commit | f02e1d87d46aa6161d0cab5444e0abfa9624b78d (patch) | |
| tree | cc1148c8ef544818a7995074e679a987ba325a44 /src/Daemon/CommLayerServer.h | |
| parent | 58d9dfde6ce788c5ffdfe5160d19aaeb8ac7b3a2 (diff) | |
| parent | ff2627e7c597e50025ca4d91ff8168eec80f9054 (diff) | |
| download | abrt-f02e1d87d46aa6161d0cab5444e0abfa9624b78d.tar.gz abrt-f02e1d87d46aa6161d0cab5444e0abfa9624b78d.tar.xz abrt-f02e1d87d46aa6161d0cab5444e0abfa9624b78d.zip | |
Merge branch 'master' of git://git.fedorahosted.org/abrt
Diffstat (limited to 'src/Daemon/CommLayerServer.h')
| -rw-r--r-- | src/Daemon/CommLayerServer.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/Daemon/CommLayerServer.h b/src/Daemon/CommLayerServer.h index 7e6f8d7..0b1027a 100644 --- a/src/Daemon/CommLayerServer.h +++ b/src/Daemon/CommLayerServer.h @@ -14,13 +14,12 @@ class CCommLayerServer { /* just stubs to be called when not implemented in specific comm layer */ virtual void Crash(const std::string& progname, const std::string& uid) {} - virtual void AnalyzeComplete(const map_crash_report_t& arg1) {} - virtual void Error(const std::string& arg1) {} - virtual void Update(const std::string& pMessage, uint64_t pJobID) {}; - virtual void Warning(const std::string& pMessage) {}; - virtual void JobDone(const char* pDest, uint64_t pJobID) = 0; - virtual void JobStarted(const char* pDest, uint64_t pJobID) {}; - virtual void Warning(const std::string& pMessage, uint64_t pJobID) {}; + virtual void JobDone(const char* pDest, const char* pUUID) = 0; + virtual void JobStarted(const char* pDest) {}; + + virtual void Error(const std::string& pMessage, const char* peer) {} + virtual void Update(const std::string& pMessage, const char* peer, uint64_t pJobID) {}; + virtual void Warning(const std::string& pMessage, const char* peer, uint64_t pJobID) {}; }; #endif |
