summaryrefslogtreecommitdiff
path: root/store/source/storbios.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'store/source/storbios.hxx')
-rw-r--r--store/source/storbios.hxx56
1 files changed, 19 insertions, 37 deletions
diff --git a/store/source/storbios.hxx b/store/source/storbios.hxx
index d9d91255742b..f6e74ee3e19d 100644
--- a/store/source/storbios.hxx
+++ b/store/source/storbios.hxx
@@ -1,40 +1,32 @@
/*************************************************************************
*
- * OpenOffice.org - a multi-platform office productivity suite
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
- * $RCSfile: storbios.hxx,v $
+ * Copyright 2008 by Sun Microsystems, Inc.
*
- * $Revision: 1.1.2.3 $
+ * OpenOffice.org - a multi-platform office productivity suite
*
- * last change: $Author: mhu $ $Date: 2008/10/31 18:28:18 $
+ * This file is part of OpenOffice.org.
*
- * The Contents of this file are made available subject to
- * the terms of GNU Lesser General Public License Version 2.1.
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
*
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
*
- * GNU Lesser General Public License Version 2.1
- * =============================================
- * Copyright 2005 by Sun Microsystems, Inc.
- * 901 San Antonio Road, Palo Alto, CA 94303, USA
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1, as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef _STORE_STORBIOS_HXX_
-#define _STORE_STORBIOS_HXX_ "$Revision: 1.1.2.3 $"
+#define _STORE_STORBIOS_HXX_
#include "sal/types.h"
#include "rtl/ref.hxx"
@@ -93,10 +85,6 @@ public:
storeError write (
sal_uInt32 nAddr, const void *pData, sal_uInt32 nSize);
- /** isModified.
- */
- inline bool isModified (void) const;
-
/** isWriteable.
*/
inline bool isWriteable (void) const;
@@ -197,7 +185,6 @@ private:
typedef OStoreSuperBlockPage SuperPage;
SuperPage *m_pSuper;
- bool m_bModified;
bool m_bWriteable;
rtl::Reference< PageData::Allocator > m_xAllocator;
@@ -235,14 +222,13 @@ private:
/** SuperBlock verification and repair.
*/
storeError verify (SuperPage *&rpSuper);
- storeError repair (SuperPage *&rpSuper);
/** Page Maintenance.
*/
storeError peek (
- OStorePageData &rData);
+ OStorePageData &rData, sal_uInt32 nAddr);
storeError poke (
- OStorePageData &rData);
+ OStorePageData &rData, sal_uInt32 nAddr);
storeError loadObjectAt_Impl (
OStorePageObject & rPage, sal_uInt32 nAddr);
@@ -259,10 +245,6 @@ inline OStorePageBIOS::operator osl::Mutex& (void) const
{
return (osl::Mutex&)m_aMutex;
}
-inline bool OStorePageBIOS::isModified (void) const
-{
- return m_bModified;
-}
inline bool OStorePageBIOS::isWriteable (void) const
{
return m_bWriteable;