summaryrefslogtreecommitdiff
path: root/formula
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2010-12-21 19:39:13 -0500
committerKohei Yoshida <kyoshida@novell.com>2010-12-21 19:39:13 -0500
commit1c6ca84071189611ab0ed2589e4965277ed66c4b (patch)
tree0d8bff4aa2f2f9a51b30dd5e9606e915ec55d4af /formula
parentc4b7910c120be1c5a8462c20b12734139632a4de (diff)
Removed a header; nobody uses SimpleIntrusiveReference any more.
Diffstat (limited to 'formula')
-rw-r--r--formula/inc/formula/intruref.hxx103
-rw-r--r--formula/prj/d.lst1
2 files changed, 0 insertions, 104 deletions
diff --git a/formula/inc/formula/intruref.hxx b/formula/inc/formula/intruref.hxx
deleted file mode 100644
index d4bec99e2edf..000000000000
--- a/formula/inc/formula/intruref.hxx
+++ /dev/null
@@ -1,103 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * 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).
- *
- * 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 FORMULA_INTRUREF_HXX
-#define FORMULA_INTRUREF_HXX
-
-namespace formula
-{
-
-/** A simple intrusive refcounting template, not thread safe, but therefore
- also a bit faster than boost's smart_ptr or uno::Reference equivalents, and
- the type to be refcounted has full control over its behavior.
-
- Mainly used in formula compiler and interpreter context, e.g. ScTokenRef,
- ScMatrixRef.
-
- Type T must implement methods IncRef() and DecRef(), in case typename T is
- const they must be const as well and the reference counter be mutable.
- */
-template< typename T > class SimpleIntrusiveReference
-{
- T* p;
-public:
- inline SimpleIntrusiveReference() : p(0) {}
- inline SimpleIntrusiveReference( const SimpleIntrusiveReference& r )
- {
- p = r.p;
- if ( p )
- p->IncRef();
- }
- inline SimpleIntrusiveReference( T *t )
- {
- p = t;
- if ( p )
- t->IncRef();
- }
- inline void Clear()
- {
- if ( p )
- {
- p->DecRef();
- p = 0;
- }
- }
- inline ~SimpleIntrusiveReference()
- {
- if ( p )
- p->DecRef();
- }
- inline SimpleIntrusiveReference& operator=( T* t )
- {
- if ( t )
- t->IncRef();
- if ( p )
- p->DecRef();
- p = t;
- return *this;
- }
- inline SimpleIntrusiveReference& operator=( const SimpleIntrusiveReference& r )
- {
- *this = r.p;
- return *this;
- }
- inline bool Is() const { return p != 0; }
- inline bool operator ! () const { return p == 0; }
- inline T* operator&() const { return p; }
- inline T* operator->() const { return p; }
- inline T& operator*() const { return *p; }
- inline operator T*() const { return p; }
- inline T* get() const { return p; }
-};
-// =============================================================================
-} // formula
-// =============================================================================
-
-#endif // SC_INTRUREF_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/formula/prj/d.lst b/formula/prj/d.lst
index 3ad1e394844f..c80df46d31b2 100644
--- a/formula/prj/d.lst
+++ b/formula/prj/d.lst
@@ -29,7 +29,6 @@ mkdir: %_DEST%\inc%_EXT%\formula
..\inc\formula\token.hxx %_DEST%\inc%_EXT%\formula\token.hxx
..\inc\formula\tokenarray.hxx %_DEST%\inc%_EXT%\formula\tokenarray.hxx
..\inc\formula\errorcodes.hxx %_DEST%\inc%_EXT%\formula\errorcodes.hxx
-..\inc\formula\intruref.hxx %_DEST%\inc%_EXT%\formula\intruref.hxx