summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/DBusServerProxy.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-08-06 17:09:18 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-08-06 17:09:18 +0200
commitc133ae4049f68a9e32a85c9ead40c83613851b22 (patch)
tree62df41a87e42aea41995e228c571324c1e4ea218 /lib/CommLayer/DBusServerProxy.cpp
parent6c35b832998b807c35eef0ffc1cce93262d5550c (diff)
parentb9c0e8f9f8b3148e7ffc95b4eaf25299d9ead2a2 (diff)
downloadabrt-c133ae4049f68a9e32a85c9ead40c83613851b22.tar.gz
abrt-c133ae4049f68a9e32a85c9ead40c83613851b22.tar.xz
abrt-c133ae4049f68a9e32a85c9ead40c83613851b22.zip
Merge branch 'master' of ssh://vda@git.fedorahosted.org/git/abrt
Diffstat (limited to 'lib/CommLayer/DBusServerProxy.cpp')
-rw-r--r--lib/CommLayer/DBusServerProxy.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/CommLayer/DBusServerProxy.cpp b/lib/CommLayer/DBusServerProxy.cpp
index d4aee84..6bf0fbd 100644
--- a/lib/CommLayer/DBusServerProxy.cpp
+++ b/lib/CommLayer/DBusServerProxy.cpp
@@ -30,6 +30,7 @@ CDBusServer_adaptor::CDBusServer_adaptor()
register_method(CDBusServer_adaptor, Report, _Report_stub);
register_method(CDBusServer_adaptor, DeleteDebugDump, _DeleteDebugDump_stub);
register_method(CDBusServer_adaptor, GetJobResult, _GetJobResult_stub);
+ register_method(CDBusServer_adaptor, GetPluginsInfo, _GetPluginsInfo_stub);
}
/* reveal Interface introspection when we stabilize the API */
/*
@@ -193,3 +194,13 @@ DBus::Message CDBusServer_adaptor::_GetJobResult_stub(const DBus::CallMessage &c
wi << report;
return reply;
}
+
+DBus::Message CDBusServer_adaptor::_GetPluginsInfo_stub(const DBus::CallMessage &call)
+{
+ vector_map_string_string_t plugins_info;
+ plugins_info = GetPluginsInfo();
+ DBus::ReturnMessage reply(call);
+ DBus::MessageIter wi = reply.writer();
+ wi << plugins_info;
+ return reply;
+}