diff options
Diffstat (limited to 'connectivity/source/inc/dbase/DIndexes.hxx')
-rw-r--r-- | connectivity/source/inc/dbase/DIndexes.hxx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/connectivity/source/inc/dbase/DIndexes.hxx b/connectivity/source/inc/dbase/DIndexes.hxx index f4c4fc5f2c0e..9953d36568ab 100644 --- a/connectivity/source/inc/dbase/DIndexes.hxx +++ b/connectivity/source/inc/dbase/DIndexes.hxx @@ -2,9 +2,9 @@ * * $RCSfile: DIndexes.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: oj $ $Date: 2001-10-12 11:54:43 $ + * last change: $Author: oj $ $Date: 2002-07-04 06:36:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -92,6 +92,15 @@ namespace connectivity const TStringVector &_rVector) : ODbaseIndexes_BASE(*_pTable,_pTable->getConnection()->getMetaData()->storesMixedCaseQuotedIdentifiers(),_rMutex,_rVector) , m_pTable(_pTable) {} + + inline static void * SAL_CALL operator new( size_t nSize ) SAL_THROW( () ) + { return ::rtl_allocateMemory( nSize ); } + inline static void * SAL_CALL operator new( size_t nSize,const void* _pHint ) SAL_THROW( () ) + { return const_cast<void*>(_pHint); } + inline static void SAL_CALL operator delete( void * pMem ) SAL_THROW( () ) + { ::rtl_freeMemory( pMem ); } + inline static void SAL_CALL operator delete( void * pMem,const void* _pHint ) SAL_THROW( () ) + { } }; } } |