#include <sstream>
#include "TDbiConfigStream.hxx"
#include "TDbiFieldType.hxx"
#include "TDbiTableProxy.hxx"
#include "TDbiDatabaseManager.hxx"
#include "TDbiWriter.hxx"
#include <TSK_DBI_Log.hxx>
#include <MsgFormat.h>
#include "TDbiRegistry.hxx"
#include "TDbiCfg.hxx"
#include "TDbiCascader.hxx"
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &os, const TDbiConfigStream &cfStream) |
ostream& operator<< | ( | ostream & | os, | |
const TDbiConfigStream & | cfStream | |||
) |
Definition at line 176 of file TDbiConfigStream.cxx.
References TDbiConfigStream::GetConfigSet().
00176 { 00177 00178 // 00179 // 00180 // Purpose: Output status of TDbiConfigStream on ostream. 00181 // 00182 // Arguments: 00183 // os in ostream to be outout 00184 // cfStream in TDbiConfigStream whise status is to be output. 00185 // 00186 // Return: Updated ostream 00187 // 00188 // Contact: N. West 00189 // 00190 // Specification:- 00191 // ============= 00192 // 00193 // o Output status of TDbiConfigStream on ostream. 00194 00195 // Program Notes:- 00196 // ============= 00197 00198 // None. 00199 00200 const TDbiConfigSet* cfSet = cfStream.GetConfigSet(); 00201 00202 if ( cfSet ) os << "TDbiConfigSet contains: " << *cfSet << endl; 00203 else os << "TDbiConfigSet is empty! " << endl; 00204 return os; 00205 }