Return TypeFunction nameArguments
unsigned inthdbObject::GetObjId(void)

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

Function Logic:

0:START 1:!m_pRoot 2:Return 0 3:Return m_pRoot->m_ObjId

Function body:

unsigned int hdbObject::GetObjId (void)
{
   if (!m_pRoot)
       return 0;
   return m_pRoot->m_ObjId ;
}