Standard constructor. The atom will be empty and be of unknown type.

Return TypeFunction nameArguments
hzAtom*hzAtom::hzAtom(void)

Declared and defined in file: hzDatabase.h

Function Logic:

0:START 1:m_Data m_eType m_eStatus 2: No text

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 ;
   }