summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/CommLayerServer.h
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-04-07 17:56:35 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-04-07 17:56:35 +0200
commit0e96f49ddb33421efcdd55d543439f622e707164 (patch)
tree128a52ac7736a94933128a80842a935ea62619f0 /lib/CommLayer/CommLayerServer.h
parent72a96c03f783e55daff80d331811bc43198283fd (diff)
downloadabrt-0e96f49ddb33421efcdd55d543439f622e707164.tar.gz
abrt-0e96f49ddb33421efcdd55d543439f622e707164.tar.xz
abrt-0e96f49ddb33421efcdd55d543439f622e707164.zip
Fixed dbus commlayer
Diffstat (limited to 'lib/CommLayer/CommLayerServer.h')
-rw-r--r--lib/CommLayer/CommLayerServer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/CommLayer/CommLayerServer.h b/lib/CommLayer/CommLayerServer.h
index e4a5170..fc76cc9 100644
--- a/lib/CommLayer/CommLayerServer.h
+++ b/lib/CommLayer/CommLayerServer.h
@@ -2,6 +2,7 @@
#include <map>
#include <string>
#include <sstream>
+#include <iostream>
#include "MiddleWare.h"
#include "Observer.h"
@@ -37,7 +38,7 @@ class CCommLayerServer{
*/
public:
/* just stubs to be called when not implemented in specific comm layer */
- void Crash(const std::string& arg1) {}
- void AnalyzeComplete(map_crash_report_t arg1) {}
- void Error(const std::string& arg1) {}
+ virtual void Crash(const std::string& arg1) {}
+ virtual void AnalyzeComplete(map_crash_report_t arg1) {}
+ virtual void Error(const std::string& arg1) {}
};