Test for this URL being lexically greater than the supplied test URL

Return TypeFunction nameArguments
boolhzUrl::operator>(hzUrl&,)

Declared in file: hzUrl.h
Defined in file : hzUrl.cpp

Function Logic:

0:START 1:unknown 2:Return false 3:unknown 4:Return false 5:unknown 6:Return true 7:Return Whole()>testUrl.Whole()?true:false

Function body:

bool hzUrl::operator> (hzUrl& testUrl)
{
   //  Test for this URL being lexically greater than the supplied test URL
   //  
   //  Argument: U The test URL
   //  
   //  Returns: True If this hzUrl is equal to the operand hzUrl
   //     False Otherwise
   if (m_addr == testUrl.m_addr)   return false ;
   if (!m_addr && testUrl.m_addr)  return false ;
   if (m_addr && !testUrl.m_addr)  return true ;
   //  _url_space* thisCtl ;  // This URL space
   //  _url_space* suppCtl ;  // Supplied URL space
   //  thisCtl = _urlXlate(m_addr) ;
   //  suppCtl = _urlXlate(testUrl.m_addr) ;
   return Whole() > testUrl.Whole() ? true : false ;
}