Write the whole value of the hzUrl to the output stream
| Return Type | Function name | Arguments |
|---|---|---|
| ostream& | operator<< | (ostream&,hzUrl&,) |
Declared and defined in file: hzUrl.cpp
Function Logic:
Function body:
ostream& operator<< (ostream& os)hzUrl& obj,
{
// Category: Data Output
//
// Write the whole value of the hzUrl to the output stream
if (*obj)
os << *obj ;
return os ;
}