diff options
author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-08-10 15:52:27 +0200 |
---|---|---|
committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-08-10 15:52:27 +0200 |
commit | c9e10d9e86fc1d6870374391b1d5c645150b1c05 (patch) | |
tree | 57068f85734d3b47befa26bd8b195486b99979d2 /lib/CommLayer/CommLayerServerDBus.cpp | |
parent | 3bab9d79a01ac70a78c012eaa82dccaaa5c59ee5 (diff) | |
download | abrt-c9e10d9e86fc1d6870374391b1d5c645150b1c05.tar.gz abrt-c9e10d9e86fc1d6870374391b1d5c645150b1c05.tar.xz abrt-c9e10d9e86fc1d6870374391b1d5c645150b1c05.zip |
DBUS: added new method to get plugin settings
Diffstat (limited to 'lib/CommLayer/CommLayerServerDBus.cpp')
-rw-r--r-- | lib/CommLayer/CommLayerServerDBus.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/CommLayer/CommLayerServerDBus.cpp b/lib/CommLayer/CommLayerServerDBus.cpp index 029cc91..864a042 100644 --- a/lib/CommLayer/CommLayerServerDBus.cpp +++ b/lib/CommLayer/CommLayerServerDBus.cpp @@ -115,3 +115,8 @@ vector_map_string_string_t CCommLayerServerDBus::GetPluginsInfo() plugins_info = m_pObserver->GetPluginsInfo(); return plugins_info; } + +map_plugin_settings_t CCommLayerServerDBus::GetPluginSettings(const std::string& pName) +{ + return m_pObserver->GetPluginSettings(pName); +} |