Return TypeFunction nameArguments
inthzXDate::datecmp(hzXDate&,hzXDate&,)

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

Function Logic:

0:START 1:a.m_hour>b.m_hour 2:Return 1 3:a.m_hour 4:Return -1 5:a.m_usec>b.m_usec 6:Return 1 7:a.m_usec 8:Return -1 9:Return 0

Function body:

int hzXDate::datecmp (hzXDate& a, hzXDate& b)
{
   if ( a.m_hour > b.m_hour)
       return 1;
   if (a.m_hour < b.m_hour)
       return -1;
   if (a.m_usec > b.m_usec)
       return 1;
   if (a.m_usec < b.m_usec)
       return -1;
   return 0;
}