| Return Type | Function name | Arguments |
|---|---|---|
| ostream& | operator<< | (ostream&,const hzTime&,) |
Declared and defined in file: hzDate.cpp
Function Logic:
Function body:
ostream& operator<< (ostream& os, const hzTime& t)
{
char buf [12];
sprintf(buf, "%02d:%02d:%02d", (char) t.Hour(), (char) t.Min(), (char) t.Sec()) ;
os << buf ;
return os ;
}