#include "Validity/VldContext.h"#include "MessageService/MsgService.h"Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &os, const VldContext &vldc) |
|
||||||||||||
|
Definition at line 21 of file VldContext.cxx. 00022 {
00023 if (os.good()) {
00024 if (os.tie()) os.tie()->flush(); // instead of opfx
00025 os << vldc.AsString();
00026 }
00027 // instead of os.osfx()
00028 if (os.flags() & std::ios::unitbuf) os.flush();
00029 return os;
00030 }
|
1.3.9.1