diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-04-07 17:56:35 +0200 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-04-07 17:56:35 +0200 |
| commit | 0e96f49ddb33421efcdd55d543439f622e707164 (patch) | |
| tree | 128a52ac7736a94933128a80842a935ea62619f0 /lib/CommLayer/CommLayerServerDBus.h | |
| parent | 72a96c03f783e55daff80d331811bc43198283fd (diff) | |
| download | abrt-0e96f49ddb33421efcdd55d543439f622e707164.tar.gz abrt-0e96f49ddb33421efcdd55d543439f622e707164.tar.xz abrt-0e96f49ddb33421efcdd55d543439f622e707164.zip | |
Fixed dbus commlayer
Diffstat (limited to 'lib/CommLayer/CommLayerServerDBus.h')
| -rw-r--r-- | lib/CommLayer/CommLayerServerDBus.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/CommLayer/CommLayerServerDBus.h b/lib/CommLayer/CommLayerServerDBus.h index c5715c9..ba730ac 100644 --- a/lib/CommLayer/CommLayerServerDBus.h +++ b/lib/CommLayer/CommLayerServerDBus.h @@ -3,6 +3,7 @@ #include <dbus-c++/dbus.h> #include <dbus-c++/glib-integration.h> #include "DBusServerProxy.h" +#include <iostream> class CCommLayerServerDBus : public CCommLayerServer, @@ -18,10 +19,14 @@ class CCommLayerServerDBus CCommLayerServerDBus(CMiddleWare *m_pMW); virtual ~CCommLayerServerDBus(); - virtual vector_crash_infos_t GetCrashInfos(const std::string &pUID); + virtual vector_crash_infos_t GetCrashInfos(const std::string &pDBusSender); virtual dbus_vector_map_crash_infos_t GetCrashInfosMap(const std::string &pDBusSender); virtual map_crash_report_t CreateReport(const std::string &pUUID,const std::string &pDBusSender); virtual bool Report(map_crash_report_t pReport); virtual bool DeleteDebugDump(const std::string& pUUID, const std::string& pDBusSender); + + void Crash(const std::string& arg1); + void AnalyzeComplete(map_crash_report_t arg1); + void Error(const std::string& arg1); }; |
