Return TypeFunction nameArguments
boolhzUrl::operator!=(const char*,)

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

Function Logic:

0:START 1:(!cpStr||!cpStr[0])&&!m_addr 2:Return false 3:!cpStr||!cpStr[0] 4:Return true 5:!m_addr 6:Return true 7:Return Whole()==cpStr?false:true

Function body:

bool hzUrl::operator!= (const char* cpStr)
{
   if ((!cpStr || !cpStr[0])&& !m_addr)
       return false ;
   if (!cpStr || !cpStr[0])return true ;
   if (!m_addr)                return true ;
   return Whole() == cpStr ? false : true ;
}