Retrieve Cstr from this atom. This will be populated if the hzAtom has a value and the datatype is BASETYPE_STRING, regardless of how the string value was set. Arguments: None

Return TypeFunction nameArguments
const char*hzAtom::Cstr(void)

Declared in file: hzDatabase.h
Defined in file : hzAtom.cpp

Function Logic:

0:START 1:unknown 2:items pStr items 3:Return pStr 4:Return 0

Function body:

const char* hzAtom::Cstr (void)
{
   //  Retrieve Cstr from this atom. This will be populated if the hzAtom has a value and the datatype is BASETYPE_STRING, regardless of how the string value was set.
   //  
   //  Arguments: None
   //  Returns: Instance of hzEmail by value.
   if (m_eStatus == ATOM_SET && m_eType == BASETYPE_STRING)
   {
       const char* pStr ;  //  Return string value
       hzString    tmp ;   //  Cast
       tmp._int_set(m_Data.m_uInt32) ; pStr = *tmp ; tmp._int_clr() ; return pStr ;
   }
   return 0;
}