Return TypeFunction nameArguments
boolhzMD5::operator==(const hzMD5&,)

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

Function Logic:

Function body:

bool hzMD5::operator== (const hzMD5& op)
{
   return m_Parts[0]== op.m_Parts[0]&& m_Parts[1]== op.m_Parts[1]&& m_Parts[2]== op.m_Parts[2]&& m_Parts[3]== op.m_Parts[3]? true : false ;
}