Return Type | Function name | Arguments |
---|---|---|
ostream& | operator<< | (ostream&,const hzSDate&,) |
Declared and defined in file: hzDate.cpp
Function Logic:
Function body:
ostream& operator<< (ostream& os, const hzSDate& d) { char buf[12]; sprintf(buf, "%04d/%02d/%02d", d.Year(), d.Month(), d.Day()) ; os << buf ; return os ; }