00001 // $Id: TDbiTableRow.cxx,v 1.1 2011/01/18 05:49:20 finch Exp $ 00002 00003 #include "TDbiTableRow.hxx" 00004 #include <TSK_DBI_Log.hxx> 00005 #include <MsgFormat.h> 00006 using std::endl; 00007 00008 ClassImp(TDbiTableRow) 00009 00010 // Definition of static data members 00011 // ********************************* 00012 00013 00014 00015 // Definition of all member functions (static or otherwise) 00016 // ******************************************************* 00017 // 00018 // - ordered: ctors, dtor, operators then in alphabetical order. 00019 00020 //..................................................................... 00021 00022 TDbiTableRow::TDbiTableRow(): 00023 fOwner(0) 00024 { 00025 // 00026 // 00027 // Purpose: Default constructor 00028 00029 00030 SK_DBI_Trace( "Creating TDbiTableRow" << " "); 00031 } 00032 //..................................................................... 00033 00034 TDbiTableRow::TDbiTableRow(const TDbiTableRow& from) : TObject(from) 00035 { 00036 // 00037 // 00038 // Purpose: Copy constructor. 00039 00040 00041 SK_DBI_Trace( "Creating copy TDbiTableRow" << " "); 00042 00043 // Nothing to copy; no data member in TDbiTableRow. 00044 00045 } 00046 00047 //..................................................................... 00048 00049 TDbiTableRow::~TDbiTableRow() { 00050 // 00051 // 00052 // Purpose: Destructor 00053 00054 00055 SK_DBI_Trace( "Destroying TDbiTableRow" << " "); 00056 00057 } 00058 00059