summaryrefslogtreecommitdiff
path: root/unotools/inc/unotools/configmgr.hxx
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2000-12-13 07:04:43 +0000
committerOliver Specht <os@openoffice.org>2000-12-13 07:04:43 +0000
commitab0f4f51f472708b9be76e41fa5e298e08916ceb (patch)
tree85e1b40abd5947f30abf7f16fcd65ff11e9e0a56 /unotools/inc/unotools/configmgr.hxx
parent1e7ab85ed71f2a3b137b1654db95248df93cec0c (diff)
#80698# use second configuration provider for locally cached components
Diffstat (limited to 'unotools/inc/unotools/configmgr.hxx')
-rw-r--r--unotools/inc/unotools/configmgr.hxx13
1 files changed, 11 insertions, 2 deletions
diff --git a/unotools/inc/unotools/configmgr.hxx b/unotools/inc/unotools/configmgr.hxx
index 1880ccd902fb..3f38286abf24 100644
--- a/unotools/inc/unotools/configmgr.hxx
+++ b/unotools/inc/unotools/configmgr.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: configmgr.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: mba $ $Date: 2000-11-30 09:12:41 $
+ * last change: $Author: os $ $Date: 2000-12-13 08:01:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -102,6 +102,9 @@ namespace utl
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >
GetConfigurationProvider();
+ ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >
+ GetLocalConfigurationProvider();
+
com::sun::star::uno::Reference< com::sun::star::container::XHierarchicalNameAccess>
AddConfigItem(utl::ConfigItem& rCfgItem);
@@ -125,6 +128,12 @@ namespace utl
//direct readonly access to some special configuration elements
static com::sun::star::uno::Any GetDirectConfigProperty(ConfigProperty eProp);
+ sal_Bool IsLocalConfigProvider();
+ com::sun::star::uno::Reference< com::sun::star::container::XHierarchicalNameAccess>
+ GetHierarchyAccess(const rtl::OUString& rFullPath);
+ com::sun::star::uno::Any GetLocalProperty(const rtl::OUString& rProperty);
+ void PutLocalProperty(const rtl::OUString& , const com::sun::star::uno::Any& rValue);
+
};
}//namespace utl
#endif //_UTL_CONFIGMGR_HXX_