diff options
author | Dirk Grobler <dg@openoffice.org> | 2000-11-10 21:45:40 +0000 |
---|---|---|
committer | Dirk Grobler <dg@openoffice.org> | 2000-11-10 21:45:40 +0000 |
commit | 33e8d8a7b9d2b6cd06dbed0ebb95babe3baac477 (patch) | |
tree | 911d84cb84b2482b13af7d9d7e41a7e0766218ab /configmgr/source/inc | |
parent | 9bd8182bdb39d72955458217ccaeee614bbf799b (diff) |
adjust due to adding new admin func
Diffstat (limited to 'configmgr/source/inc')
-rw-r--r-- | configmgr/source/inc/confapifactory.hxx | 9 | ||||
-rw-r--r-- | configmgr/source/inc/configset.hxx | 7 | ||||
-rw-r--r-- | configmgr/source/inc/template.hxx | 6 |
3 files changed, 11 insertions, 11 deletions
diff --git a/configmgr/source/inc/confapifactory.hxx b/configmgr/source/inc/confapifactory.hxx index ef6881eebeed..39ef5651d9df 100644 --- a/configmgr/source/inc/confapifactory.hxx +++ b/configmgr/source/inc/confapifactory.hxx @@ -2,9 +2,9 @@ * * $RCSfile: confapifactory.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: jb $ $Date: 2000-11-10 17:31:22 $ + * last change: $Author: dg $ $Date: 2000-11-10 22:41:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -82,9 +82,8 @@ namespace configmgr struct ServiceInfo; // instantiation - uno::Reference< uno::XInterface > SAL_CALL instantiateProvider(uno::Reference< lang::XMultiServiceFactory > const& rServiceManager ); -// uno::Reference< uno::XInterface > SAL_CALL instantiateReadAccess(uno::Reference< lang::XMultiServiceFactory > const& rServiceManager ); -// uno::Reference< uno::XInterface > SAL_CALL instantiateUpdateAccess(uno::Reference< lang::XMultiServiceFactory > const& rServiceManager ); + uno::Reference< uno::XInterface > SAL_CALL instantiateConfigProvider(uno::Reference< lang::XMultiServiceFactory > const& rServiceManager ); + uno::Reference< uno::XInterface > SAL_CALL instantiateAdminProvider(uno::Reference< lang::XMultiServiceFactory > const& rServiceManager ); uno::Reference< uno::XInterface > SAL_CALL instantiateConfigRegistry(uno::Reference< lang::XMultiServiceFactory > const& rServiceManager ); diff --git a/configmgr/source/inc/configset.hxx b/configmgr/source/inc/configset.hxx index 1de6a81cc7b6..623506e22fc3 100644 --- a/configmgr/source/inc/configset.hxx +++ b/configmgr/source/inc/configset.hxx @@ -2,9 +2,9 @@ * * $RCSfile: configset.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: jb $ $Date: 2000-11-10 17:32:36 $ + * last change: $Author: dg $ $Date: 2000-11-10 22:41:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -169,7 +169,7 @@ namespace configmgr UnoType getElementType() const; Name getTemplateName() const; Name getTemplatePackage() const; - AbsolutePath getTemplatePath() const; + RelativePath getTemplatePath() const; static TemplateHolder extractElementInfo(Tree const& aTree, NodeRef const& aNode); }; @@ -185,6 +185,7 @@ namespace configmgr ~SetElementFactory(); ElementTree instantiateTemplate(TemplateHolder const& aTemplate); + ElementTree instantiateOnDefault(std::auto_ptr<INode> aTree, TemplateHolder const& aDummyTemplate); }; //----------------------------------------------------------------------------- diff --git a/configmgr/source/inc/template.hxx b/configmgr/source/inc/template.hxx index 69899f4f8353..59d50ee1996e 100644 --- a/configmgr/source/inc/template.hxx +++ b/configmgr/source/inc/template.hxx @@ -2,9 +2,9 @@ * * $RCSfile: template.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: jb $ $Date: 2000-11-07 14:40:31 $ + * last change: $Author: dg $ $Date: 2000-11-10 22:41:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -102,7 +102,7 @@ namespace configmgr UnoType getInstanceType() const { return m_aInstanceType; } /// get the path where the template is located - AbsolutePath getPath() const; + RelativePath getPath() const; /// get the local name of the template Name getName() const { return m_aName; } |