| Return Type | Function name | Arguments |
|---|---|---|
| void | hdbObject::SetObjId | (unsigned int,) |
Declared in file: hzDatabase.h
Defined in file : hdbObject.cpp
Function Logic:
Function body:
void hdbObject::SetObjId (unsigned int nObjId)
{
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 ;
}