Standard constructor. The atom will be empty and be of unknown type.
| Return Type | Function name | Arguments |
|---|---|---|
| hzAtom* | hzAtom::hzAtom | (void) |
Declared and defined in file: hzDatabase.h
Function Logic:
Function body:
hzAtom* hzAtom::hzAtom (void)
{
// Standard constructor. The atom will be empty and be of unknown type.
m_Data.m_uInt64 = 0;
m_eType = BASETYPE_UNDEF;
m_eStatus = ATOM_CLEAR ;
}