diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-07-05 07:07:52 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-07-05 07:07:52 +0000 |
commit | 6a02139fb7afc6cd23aaff2a68b4ea1acb9bae00 (patch) | |
tree | 811672395d1398c180b8406f26fec5dc6311006c /connectivity/source/inc/file/fanalyzer.hxx | |
parent | f6842997d5e9756cb651a079a5437a8957aae0c4 (diff) |
#99549# insert and remove some delete and new operators
Diffstat (limited to 'connectivity/source/inc/file/fanalyzer.hxx')
-rw-r--r-- | connectivity/source/inc/file/fanalyzer.hxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/connectivity/source/inc/file/fanalyzer.hxx b/connectivity/source/inc/file/fanalyzer.hxx index b54db66c55ef..6a858c6379c9 100644 --- a/connectivity/source/inc/file/fanalyzer.hxx +++ b/connectivity/source/inc/file/fanalyzer.hxx @@ -2,9 +2,9 @@ * * $RCSfile: fanalyzer.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: oj $ $Date: 2001-08-24 06:00:38 $ + * last change: $Author: oj $ $Date: 2002-07-05 08:07:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -78,6 +78,14 @@ namespace connectivity public: OSQLAnalyzer(); virtual ~OSQLAnalyzer(); + 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,void* _pHint ) SAL_THROW( () ) + { return _pHint; } + inline static void SAL_CALL operator delete( void * pMem ) SAL_THROW( () ) + { ::rtl_freeMemory( pMem ); } + inline static void SAL_CALL operator delete( void * pMem,void* _pHint ) SAL_THROW( () ) + { } void describeParam(::vos::ORef<OSQLColumns> rParameterColumns); // genauere Beschreibung der Parameter ::std::vector<sal_Int32>* bindResultRow(OValueRow _pRow); // Anbinden einer Ergebniszeile an die Restrictions |