| Return Type | Function name | Arguments |
|---|---|---|
| ostream& | operator<< | (ostream&,const hzString&,) |
Declared and defined in file: hzString.cpp
Function Logic:
Function body:
ostream& operator<< (ostream& os, const hzString& obj)
{
_hzfunc("hzString::operator<<") ;
if (*obj)
os << *obj ;
return os ;
}