From 98f1102f06f5e593cd8f186271db5cadf0e28417 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 12 Aug 2009 18:37:55 +0200 Subject: DBUS: exposed method SetPluginSettings --- lib/CommLayer/DBusServerProxy.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/CommLayer/DBusServerProxy.h') diff --git a/lib/CommLayer/DBusServerProxy.h b/lib/CommLayer/DBusServerProxy.h index 299ab34..5f767bc 100644 --- a/lib/CommLayer/DBusServerProxy.h +++ b/lib/CommLayer/DBusServerProxy.h @@ -51,6 +51,7 @@ 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, const std::string& pDBusSender) = 0; + virtual void SetPluginSettings(const std::string& pName, const std::string& pSender, const map_plugin_settings_t& pSettings) = 0; virtual void RegisterPlugin(const std::string& pName) = 0; virtual void UnRegisterPlugin(const std::string& pName) = 0; @@ -78,6 +79,7 @@ private: DBus::Message _GetPluginSettings_stub(const DBus::CallMessage &call); DBus::Message _RegisterPlugin_stub(const DBus::CallMessage &call); DBus::Message _UnRegisterPlugin_stub(const DBus::CallMessage &call); + DBus::Message _SetPluginSettings_stub(const DBus::CallMessage &call); }; #endif -- cgit