Write the whole value of the hzUrl to the output stream

Return TypeFunction nameArguments
ostream&operator<<(ostream&,hzUrl&,)

Declared and defined in file: hzUrl.cpp

Function Logic:

0:START 1:unknown 2:items 3:Return os

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 ;
}