summaryrefslogtreecommitdiff
path: root/cppuhelper/source/servicemanager.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-01-16 13:57:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-01-16 17:27:00 +0100
commit6059652fba10c0c03b8270c75cc53d6f60ce86c4 (patch)
tree9880193619c19ab29a14a685011d71d2e21de9e6 /cppuhelper/source/servicemanager.hxx
parent882aaee5ff76dbcba74ecea615393628519e14e1 (diff)
Move addSingletonContextEntries to ServiceManager
Change-Id: I2a4c5b1f1f735e2bf5a8670d2f957f84388f0164
Diffstat (limited to 'cppuhelper/source/servicemanager.hxx')
-rw-r--r--cppuhelper/source/servicemanager.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/cppuhelper/source/servicemanager.hxx b/cppuhelper/source/servicemanager.hxx
index 013bef0493e1..b57891e4b821 100644
--- a/cppuhelper/source/servicemanager.hxx
+++ b/cppuhelper/source/servicemanager.hxx
@@ -34,6 +34,8 @@
#include "registry/registry.hxx"
#include "rtl/ustring.hxx"
+namespace cppu { struct ContextEntry_Init; }
+
namespace cppuhelper {
typedef cppu::WeakComponentImplHelper8<
@@ -142,13 +144,14 @@ public:
context_ = context;
}
+ void addSingletonContextEntries(
+ std::vector< cppu::ContextEntry_Init > * entries) const;
+
css::uno::Reference< css::uno::XComponentContext > getContext() const {
assert(context_.is());
return context_;
}
- Data const & getData() const { return data_; }
-
void loadImplementation(
css::uno::Reference< css::uno::XComponentContext > const & context,
boost::shared_ptr< Data::ImplementationInfo > const & info,