Friend function to hzEmaddr class to stream out the email address.
| Return Type | Function name | Arguments |
|---|---|---|
| ostream& | operator<< | (ostream&,hzEmaddr&,) |
Declared and defined in file: hzEmaddr.cpp
Function Logic:
Function body:
ostream& operator<< (ostream& os)hzEmaddr& obj,
{
// Category: Data Output
//
// Friend function to hzEmaddr class to stream out the email address.
//
// Arguments: 1) os Reference to output stream
// 2) ema Const reference to an email address
//
// Returns: Reference to the supplied output stream
_hzfunc("operator<<(ostream,hzEmaddr)") ;
os << *obj ;
return os ;
}