summaryrefslogtreecommitdiff
path: root/store/inc
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-07-30 14:29:34 +0000
committerKurt Zenker <kz@openoffice.org>2004-07-30 14:29:34 +0000
commitf5e2098bf0c2f2f6ec2c5ed210f8cb08b99e49bb (patch)
tree0ff8525f4ab2dd193a599433a2d442b5793ed9d8 /store/inc
parentf9f71d9028e9f6759fe7b77d992cb5617e5e5adc (diff)
INTEGRATION: CWS gcc340fixes01 (1.2.106); FILE MERGED
2004/06/04 15:09:13 fa 1.2.106.1: #i28777# gcc 3.4 fixes (only instantiate static object in template once)
Diffstat (limited to 'store/inc')
-rw-r--r--store/inc/store/object.hxx25
1 files changed, 3 insertions, 22 deletions
diff --git a/store/inc/store/object.hxx b/store/inc/store/object.hxx
index 9a52f3e0f..face3a9cb 100644
--- a/store/inc/store/object.hxx
+++ b/store/inc/store/object.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: object.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mhu $ $Date: 2001-03-13 20:37:59 $
+ * last change: $Author: kz $ $Date: 2004-07-30 15:29:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _STORE_OBJECT_HXX_
-#define _STORE_OBJECT_HXX_ "$Revision: 1.2 $"
+#define _STORE_OBJECT_HXX_ "$Revision: 1.3 $"
#ifndef _SAL_TYPES_H_
#include <sal/types.h>
@@ -97,25 +97,6 @@ template<class store_handle_type>
store_handle_type * SAL_CALL query (
IStoreHandle * pHandle, store_handle_type *);
-
-/** Template helper class as type safe Reference to store_handle_type.
- */
-template<class store_handle_type>
-class OStoreHandle : public rtl::Reference<store_handle_type>
-{
-public:
- OStoreHandle (store_handle_type * pHandle)
- : rtl::Reference<store_handle_type> (pHandle)
- {}
-
- static store_handle_type * SAL_CALL query (void * pHandle)
- {
- return store::query (
- static_cast<IStoreHandle*>(pHandle),
- static_cast<store_handle_type*>(0));
- }
-};
-
/*========================================================================
*
* OStoreObject interface.