| Return Type | Function name | Arguments |
|---|---|---|
| hzCookie& | hzCookie::operator= | (hzCookie&,) |
Declared and defined in file: hzHttpClient.h
Function Logic:
Function body:
hzCookie& hzCookie::operator= (hzCookie& op)
{
m_Expires = op.m_Expires ;
m_Path = op.m_Path ;
m_Name = op.m_Name ;
m_Value = op.m_Value ;
m_Flags = op.m_Flags ;
return *this ;
}