diff options
author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-08-11 15:33:20 +0200 |
---|---|---|
committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-08-11 15:33:20 +0200 |
commit | 13329d88e147fac7cafcdebcafd1859a74a27aa9 (patch) | |
tree | 6d4b83a7c6cc1cd982c0cfcc84b6e36f07b83865 /lib/CommLayer/CommLayerServerDBus.cpp | |
parent | b67dd4c5d4a2fdce4c6f27234b4f3dc41462d9ba (diff) | |
download | abrt-13329d88e147fac7cafcdebcafd1859a74a27aa9.tar.gz abrt-13329d88e147fac7cafcdebcafd1859a74a27aa9.tar.xz abrt-13329d88e147fac7cafcdebcafd1859a74a27aa9.zip |
DBUS: exposed methods Un/RegisterPlugin
Diffstat (limited to 'lib/CommLayer/CommLayerServerDBus.cpp')
-rw-r--r-- | lib/CommLayer/CommLayerServerDBus.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/CommLayer/CommLayerServerDBus.cpp b/lib/CommLayer/CommLayerServerDBus.cpp index 864a042..d2b6d4d 100644 --- a/lib/CommLayer/CommLayerServerDBus.cpp +++ b/lib/CommLayer/CommLayerServerDBus.cpp @@ -120,3 +120,15 @@ map_plugin_settings_t CCommLayerServerDBus::GetPluginSettings(const std::string& { return m_pObserver->GetPluginSettings(pName); } + + +void CCommLayerServerDBus::RegisterPlugin(const std::string& pName) +{ + return m_pObserver->RegisterPlugin(pName); +} + +void CCommLayerServerDBus::UnRegisterPlugin(const std::string& pName) +{ + return m_pObserver->UnRegisterPlugin(pName); +} + |