#include "TDbi.hxx"
#include "TDbiConfigSet.hxx"
#include "TDbiOutRowStream.hxx"
#include "TDbiInRowStream.hxx"
#include <TSK_DBI_Log.hxx>
#include <MsgFormat.h>
#include <iostream>
#include "TDbiResultSetHandle.tpl"
#include "TDbiWriter.tpl"
Go to the source code of this file.
Functions | |
ClassImp (TDbiConfigSet) template class TDbiResultSetHandle< TDbiConfigSet > | |
ostream & | operator<< (ostream &s, const TDbiConfigSet &cfSet) |
ClassImp | ( | TDbiConfigSet | ) |
ostream& operator<< | ( | ostream & | s, | |
const TDbiConfigSet & | cfSet | |||
) |
Purpose: Output configuration set to message stream. Arguments: s in Message stream cfSet in Configuration set to be output Return: Message stream Contact: N. West Specification:- ============= o Output configuration set to message stream.
Definition at line 66 of file TDbiConfigSet.cxx.
References TDbiFieldType::AsString(), TDbiConfigSet::GetNumParams(), TDbiConfigSet::GetParamName(), TDbiConfigSet::GetParamType(), and TDbiConfigSet::GetParamValue().
00066 { 00067 00068 // Program Notes:- 00069 // ============= 00070 00071 // None. 00072 00073 s << "TDbiConfigSet: Number of parameters: " 00074 << cfSet.GetNumParams() << endl; 00075 00076 for ( UInt_t iParam = 0; iParam < cfSet.GetNumParams(); ++iParam) { 00077 s << " " << cfSet.GetParamName(iParam) << ": " 00078 << cfSet.GetParamValue(iParam) << " (" 00079 << cfSet.GetParamType(iParam).AsString() << ")" << endl; 00080 } 00081 00082 return s; 00083 00084 }