#include "ITableRow.hxx" ClassImp(COMET::ITableRow); //_____________________________________________________________________________ COMET::ITableRow::ITableRow() { // Default constructor COMETTrace("COMET::ITableRow: Default ctor at:" << (void*) this); } //_____________________________________________________________________________ COMET::ITableRow::ITableRow(const COMET::ITableRow& from) { // Copy constructor COMETTrace("COMET::ITableRow: Copy ctor at:" << (void*) this); // Nothing to copy; no data member in COMET::IDbiTableRow. } //_____________________________________________________________________________ COMET::ITableRow::~ITableRow() { // Destructor COMETTrace("COMET::ITableRow: dtor at:" << (void*) this); }