00001 // $Id: DbiTableRow.cxx,v 1.6 2006/08/08 10:51:32 west Exp $ 00002 00003 #include "DatabaseInterface/DbiTableRow.h" 00004 #include "LeakChecker/Lea.h" 00005 #include "MessageService/MsgService.h" 00006 00007 ClassImp(DbiTableRow) 00008 00009 // Definition of static data members 00010 // ********************************* 00011 00012 CVSID("$Id: DbiTableRow.cxx,v 1.6 2006/08/08 10:51:32 west Exp $"); 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 DbiTableRow::DbiTableRow(): 00023 fOwner(0) 00024 { 00025 // 00026 // 00027 // Purpose: Default constructor 00028 00029 LEA_CTOR //Leak Checker 00030 00031 MSG("Dbi", Msg::kVerbose) << "Creating DbiTableRow" << endl; 00032 } 00033 //..................................................................... 00034 00035 DbiTableRow::DbiTableRow(const DbiTableRow& from) : TObject(from) 00036 { 00037 // 00038 // 00039 // Purpose: Copy constructor. 00040 00041 LEA_CTOR //Leak Checker 00042 00043 MSG("Dbi", Msg::kVerbose) << "Creating copy DbiTableRow" << endl; 00044 00045 // Nothing to copy; no data member in DbiTableRow. 00046 00047 } 00048 00049 //..................................................................... 00050 00051 DbiTableRow::~DbiTableRow() { 00052 // 00053 // 00054 // Purpose: Destructor 00055 00056 LEA_DTOR //Leak Checker 00057 00058 MSG("Dbi", Msg::kVerbose) << "Destroying DbiTableRow" << endl; 00059 00060 } 00061