summaryrefslogtreecommitdiffstats
path: root/src/Daemon/CommLayerServer.h
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-08-27 13:13:15 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-08-27 13:13:15 +0200
commitbc17e32391578ee0128fe73719d1f691613d18fe (patch)
tree69c268cf7cbc8c91bb75e87d93d4d1aa8cf43879 /src/Daemon/CommLayerServer.h
parentcaf38bbfe3279b9bea861e4d5b70f3c50c6e1755 (diff)
downloadabrt-bc17e32391578ee0128fe73719d1f691613d18fe.tar.gz
abrt-bc17e32391578ee0128fe73719d1f691613d18fe.tar.xz
abrt-bc17e32391578ee0128fe73719d1f691613d18fe.zip
don't encode the job id into message string, send it as an separate argument
Diffstat (limited to 'src/Daemon/CommLayerServer.h')
-rw-r--r--src/Daemon/CommLayerServer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Daemon/CommLayerServer.h b/src/Daemon/CommLayerServer.h
index 2808f8a8..ededee5a 100644
--- a/src/Daemon/CommLayerServer.h
+++ b/src/Daemon/CommLayerServer.h
@@ -14,9 +14,10 @@ class CCommLayerServer {
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& pDest, const std::string& pMessage) {};
+ virtual void Update(const std::string& pMessage, uint64_t pJobID) {};
virtual void Warning(const std::string& pMessage) {};
virtual void JobDone(const std::string &pDest, uint64_t pJobID) {};
+ virtual void Warning(const std::string& pMessage, uint64_t pJobID) {};
};
#endif //COMMLAYERSERVER_H_