#include <sstream>#include "Configurable/Cfg.h"#include "DatabaseInterface/DbiCascader.h"#include "DatabaseInterface/DbiConfigStream.h"#include "DatabaseInterface/DbiFieldType.h"#include "DatabaseInterface/DbiTableProxy.h"#include "DatabaseInterface/DbiTableProxyRegistry.h"#include "DatabaseInterface/DbiWriter.h"#include "LeakChecker/Lea.h"#include "MessageService/MsgService.h"#include "Registry/Registry.h"Go to the source code of this file.
Functions | |
| CVSID ("$Id: DbiConfigStream.cxx,v 1.18 2006/10/11 08:25:54 west Exp $") | |
| ostream & | operator<< (ostream &os, const DbiConfigStream &cfStream) |
|
||||||||||||
|
|
|
||||||||||||
|
Definition at line 178 of file DbiConfigStream.cxx. 00178 {
00179
00180 //
00181 //
00182 // Purpose: Output status of DbiConfigStream on ostream.
00183 //
00184 // Arguments:
00185 // os in ostream to be outout
00186 // cfStream in DbiConfigStream whise status is to be output.
00187 //
00188 // Return: Updated ostream
00189 //
00190 // Contact: N. West
00191 //
00192 // Specification:-
00193 // =============
00194 //
00195 // o Output status of DbiConfigStream on ostream.
00196
00197 // Program Notes:-
00198 // =============
00199
00200 // None.
00201
00202 const DbiConfigSet* cfSet = cfStream.GetConfigSet();
00203
00204 if ( cfSet ) os << "DbiConfigSet contains: " << *cfSet << endl;
00205 else os << "DbiConfigSet is empty! " << endl;
00206 return os;
00207 }
|
1.3.9.1