diff options
author | Frank Schönheit <fs@openoffice.org> | 2002-01-16 07:44:56 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2002-01-16 07:44:56 +0000 |
commit | c5b3dd145ce6bda4349bb8cd472971b435f9fe47 (patch) | |
tree | 3118bb43af598a261907f024ba560374dee537e2 /connectivity/source/drivers/file/FResultSetMetaData.cxx | |
parent | 444d5ee8e10a7530673e17f8957ad15bb763642c (diff) |
#96445# DBG_XTOR
Diffstat (limited to 'connectivity/source/drivers/file/FResultSetMetaData.cxx')
-rw-r--r-- | connectivity/source/drivers/file/FResultSetMetaData.cxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/connectivity/source/drivers/file/FResultSetMetaData.cxx b/connectivity/source/drivers/file/FResultSetMetaData.cxx index 63bfbe7844d0..39c8528b66f3 100644 --- a/connectivity/source/drivers/file/FResultSetMetaData.cxx +++ b/connectivity/source/drivers/file/FResultSetMetaData.cxx @@ -2,9 +2,9 @@ * * $RCSfile: FResultSetMetaData.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: oj $ $Date: 2001-07-30 08:52:11 $ + * last change: $Author: fs $ $Date: 2002-01-16 08:41:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -74,6 +74,9 @@ #ifndef _COMPHELPER_TYPES_HXX_ #include <comphelper/types.hxx> #endif +#ifndef _TOOLS_DEBUG_HXX +#include <tools/debug.hxx> +#endif using namespace ::comphelper; using namespace connectivity; @@ -86,18 +89,21 @@ using namespace ::com::sun::star::sdbc; using namespace ::com::sun::star::container; using namespace ::com::sun::star::lang; +DBG_NAME( file_OResultSetMetaData ) // ------------------------------------------------------------------------- OResultSetMetaData::OResultSetMetaData(const ::vos::ORef<connectivity::OSQLColumns>& _rxColumns,const ::rtl::OUString& _aTableName,OFileTable* _pTable) : m_xColumns(_rxColumns) , m_aTableName(_aTableName) , m_pTable(_pTable) { + DBG_CTOR( file_OResultSetMetaData, NULL ); } // ------------------------------------------------------------------------- OResultSetMetaData::~OResultSetMetaData() { m_xColumns = NULL; + DBG_DTOR( file_OResultSetMetaData, NULL ); } // ----------------------------------------------------------------------------- void OResultSetMetaData::checkColumnIndex(sal_Int32 column) throw(SQLException, RuntimeException) |