| Return Type | Function name | Arguments |
|---|---|---|
| unsigned long | hzXDate::AsVal | (void) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
Function body:
unsigned long hzXDate::AsVal (void)
{
uint64_t v ;
v = m_hour ;
v <<&eq; 32;
v |= m_usec ;
return v ;
}