TVldTimeStamp.cxx File Reference
#include "TVldTimeStamp.hxx"
#include <TSK_DBI_Log.hxx>
#include <MsgFormat.h>
#include <climits>
#include <math.h>
#include <unistd.h>
#include <sys/time.h>
#include "TString.h"
Go to the source code of this file.
Function Documentation
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const TVldTimeStamp & |
ts | |
|
) |
| | |
Definition at line 53 of file TVldTimeStamp.cxx.
00054 {
00055 if (os.good()) {
00056 if (os.tie()) os.tie()->flush();
00057 os << ts.AsString("c");
00058 }
00059
00060 if (os.flags() & std::ios::unitbuf) os.flush();
00061 return os;
00062 }