Return TypeFunction nameArguments
hzEcodehdbObject::SetName(const hzString&,)

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

Function Logic:

0:START 1:m_Key 2:Return E_DUPLICATE 3:m_Key 4:Return E_OK

Function body:

hzEcode hdbObject::SetName (const hzString& objKey)
{
   if (m_Key)
       return E_DUPLICATE ;
   m_Key = objKey ;
   return E_OK ;
}