summaryrefslogtreecommitdiff
path: root/configmgr/source/configurationregistry.hxx
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-10-25 14:43:41 +0200
committersb <sb@openoffice.org>2010-10-25 14:43:41 +0200
commit7e5eda3334b1fb465e957e00c11c26f0375ce1ca (patch)
tree043c53e8dd35bb410bc8673e0a86a69e8fbe8080 /configmgr/source/configurationregistry.hxx
parentcc065c4937433f944cd7f6e4332f599d5346a5e9 (diff)
sb132: #i115142# component factories should implement XServiceInfo
Diffstat (limited to 'configmgr/source/configurationregistry.hxx')
-rw-r--r--configmgr/source/configurationregistry.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/configmgr/source/configurationregistry.hxx b/configmgr/source/configurationregistry.hxx
index 6cba122188b1..417c519b97f4 100644
--- a/configmgr/source/configurationregistry.hxx
+++ b/configmgr/source/configurationregistry.hxx
@@ -30,28 +30,28 @@
#include "com/sun/star/uno/Reference.hxx"
#include "com/sun/star/uno/Sequence.hxx"
-#include "cppuhelper/factory.hxx"
-#include "rtl/unload.h"
#include "sal/types.h"
-namespace com { namespace sun { namespace star { namespace lang {
- class XSingleComponentFactory;
-} } } }
+namespace com { namespace sun { namespace star {
+ namespace uno {
+ class XComponentContext;
+ class XInterface;
+ }
+} } }
namespace rtl { class OUString; }
namespace configmgr { namespace configuration_registry {
+com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL
+create(
+ com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >
+ const & context);
+
rtl::OUString SAL_CALL getImplementationName();
com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
getSupportedServiceNames();
-com::sun::star::uno::Reference< com::sun::star::lang::XSingleComponentFactory >
-SAL_CALL createFactory(
- cppu::ComponentFactoryFunc, rtl::OUString const &,
- com::sun::star::uno::Sequence< rtl::OUString > const &, rtl_ModuleCount *)
- SAL_THROW(());
-
} }
#endif