Set the object id. This is upon FETCH of a data object from a repository. Returns: None

Return TypeFunction nameArguments
voidhdbObject::SetObjId(uint32_t,)

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

Function Logic:

0:START 1:unknown 2:items 3:unknown 4:m_pRoot 5:m_pRoot 6: No text

Function body:

void hdbObject::SetObjId (uint32_t nObjId)
{
   //  Set the object id. This is upon FETCH of a data object from a repository.
   //  
   //  Argument: nObjId The Object ID
   //  Returns: None
   if (!m_pClass)
       hzexit(E_NOINIT, "Object not initialized - Cannot set ID") ;
   if (!m_pRoot)
       m_pRoot = _obj_data::GetInstance(m_pClass) ;
   m_pRoot->m_ObjId = nObjId ;
}