summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-23 13:18:20 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-23 13:18:20 +0000
commit5295529ea7207a8a4a36330d820e70cd722e6788 (patch)
treefa5e63fdf269a269aa53336e2d8f5947f8459a8f /configmgr
parent752f9e4a69c9666b6df0d3eab52c27717c7941a6 (diff)
INTEGRATION: CWS configrefactor01 (1.6.84); FILE MERGED
2007/02/07 12:14:54 mmeeks 1.6.84.3: remove obsolete memory::Segment forward decls. 2007/01/16 12:18:21 mmeeks 1.6.84.2: Submitted by: mmeeks Kill 'memory::Segment' - no longer needed. Bin some other (empty / redundant) headers. 2007/01/11 10:35:29 mmeeks 1.6.84.1: Submitted by: mmeeks Large scale re-factoring, remove fine-grained locking in favor of a simple, single global lock (still in progress). Identify and fix various hot-spots. Remove otherwise empty / non-compiled files. Kill UpdateAccessor
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/inc/defaultprovider.hxx20
1 files changed, 5 insertions, 15 deletions
diff --git a/configmgr/source/inc/defaultprovider.hxx b/configmgr/source/inc/defaultprovider.hxx
index 2138a8f47529..d09de77ab8b4 100644
--- a/configmgr/source/inc/defaultprovider.hxx
+++ b/configmgr/source/inc/defaultprovider.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: defaultprovider.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 03:47:05 $
+ * last change: $Author: ihi $ $Date: 2007-11-23 14:18:20 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -68,11 +68,6 @@ namespace configmgr
class AbsolutePath;
}
//-------------------------
- namespace memory
- {
- class Segment;
- }
- //-------------------------
class ISubtree;
class RequestOptions;
//==========================================================================
@@ -111,10 +106,6 @@ namespace configmgr
class SAL_NO_VTABLE IDefaultableTreeManager
{
public:
- /// get a data segment to host the given location - also available in ITreeManager
- virtual memory::Segment* getDataSegment(configuration::AbsolutePath const& _rAccessor,
- const RequestOptions& _aOptions) = 0;
-
/** attempt to load default data into the tree named by a path using certain options
and requiring a specific loading depth.
@@ -122,10 +113,9 @@ namespace configmgr
<TRUE/>, if some default data is available within the tree
<FALSE/>, if no default data is available for the tree
*/
- virtual sal_Bool fetchDefaultData( memory::UpdateAccessor& _aAccessToken,
- configuration::AbsolutePath const& aSubtreePath,
- const RequestOptions& _xOptions
- ) CFG_UNO_THROW_ALL( ) = 0;
+ virtual sal_Bool fetchDefaultData(configuration::AbsolutePath const& aSubtreePath,
+ const RequestOptions& _xOptions
+ ) CFG_UNO_THROW_ALL( ) = 0;
};