#include "TDbiTableMetaData.hxx"
#include "TDbiRowStream.hxx"
#include <TSK_DBI_Log.hxx>
#include <MsgFormat.h>
#include "UtilString.hxx"
Go to the source code of this file.
Functions | |
ClassImp (TDbiRowStream) TDbiRowStream |
ClassImp | ( | TDbiRowStream | ) |
Definition at line 30 of file TDbiRowStream.cxx.
References SK_DBI_Trace.
00041 : ctors, dtor, operators then in alphabetical order. 00042 00043 //..................................................................... 00044 00045 TDbiRowStream::TDbiRowStream(const TDbiTableMetaData* metaData) : 00046 fCurCol(1), 00047 fMetaData(metaData), 00048 fIsVLDTable(false) 00049 { 00050 // 00051 // 00052 // Purpose: Default constructor 00053 // 00054 // Arguments: 00055 // metaData in Meta data for table. 00056 // tableName in Table name. 00057 // 00058 // Return: n/a 00059 // 00060 // Contact: N. West 00061 // 00062 // Specification:- 00063 // ============= 00064 // 00065 // o Create RowStream. 00066 00067 00068 // Program Notes:- 00069 // ============= 00070 00071 // None. 00072 00073 00074 SK_DBI_Trace( "Creating TDbiRowStream" << " "); 00075 00076 std::string suffix(this->TableName(),this->TableName().size()-3); 00077 fIsVLDTable = suffix == "VLD"; 00078 00079 }