#include <string>
#include "TDbi.hxx"
#include "TDbiConfigSet.hxx"
#include "TDbiResultSetHandle.hxx"
#include "TDbiRegistry.hxx"
#include "TVldContext.hxx"
#include <iosfwd>
Go to the source code of this file.
Classes | |
class | TDbiConfigStream |
Concept I/O of configuration data and equivalent TDbiRegistry objs. More... | |
Functions | |
ostream & | operator<< (ostream &s, const TDbiConfigStream &cfStream) |
ostream& operator<< | ( | ostream & | s, | |
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 }