| Return Type | Function name | Arguments |
|---|---|---|
| const char* | hzUrl::operator* | (void) |
Declared in file: hzUrl.h
Defined in file : hzUrl.cpp
Function Logic:
Function body:
const char* hzUrl::operator* (void)
{
_url_space* thisCtl ;
if (!m_addr)
return 0;
thisCtl = (_url_space*) g_ssrInet.Xlate(m_addr) ;
return thisCtl->m_data ;
}