summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/DBusServerProxy.h
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-08-11 15:33:20 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-08-11 15:33:20 +0200
commit13329d88e147fac7cafcdebcafd1859a74a27aa9 (patch)
tree6d4b83a7c6cc1cd982c0cfcc84b6e36f07b83865 /lib/CommLayer/DBusServerProxy.h
parentb67dd4c5d4a2fdce4c6f27234b4f3dc41462d9ba (diff)
downloadabrt-13329d88e147fac7cafcdebcafd1859a74a27aa9.tar.gz
abrt-13329d88e147fac7cafcdebcafd1859a74a27aa9.tar.xz
abrt-13329d88e147fac7cafcdebcafd1859a74a27aa9.zip
DBUS: exposed methods Un/RegisterPlugin
Diffstat (limited to 'lib/CommLayer/DBusServerProxy.h')
-rw-r--r--lib/CommLayer/DBusServerProxy.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CommLayer/DBusServerProxy.h b/lib/CommLayer/DBusServerProxy.h
index d7ad88a..495309b 100644
--- a/lib/CommLayer/DBusServerProxy.h
+++ b/lib/CommLayer/DBusServerProxy.h
@@ -51,6 +51,8 @@ public:
virtual map_crash_report_t GetJobResult(uint64_t pJobID, const std::string& pDBusSender) = 0;
virtual vector_map_string_string_t GetPluginsInfo() = 0;
virtual map_plugin_settings_t GetPluginSettings(const std::string& pName) = 0;
+ virtual void RegisterPlugin(const std::string& pName) = 0;
+ virtual void UnRegisterPlugin(const std::string& pName) = 0;
public:
/* signal emitters for this interface
@@ -74,6 +76,8 @@ private:
DBus::Message _GetJobResult_stub(const DBus::CallMessage &call);
DBus::Message _GetPluginsInfo_stub(const DBus::CallMessage &call);
DBus::Message _GetPluginSettings_stub(const DBus::CallMessage &call);
+ DBus::Message _RegisterPlugin_stub(const DBus::CallMessage &call);
+ DBus::Message _UnRegisterPlugin_stub(const DBus::CallMessage &call);
};
#endif