Get the object id.
| Return Type | Function name | Arguments |
|---|---|---|
| uint32_t | hdbObject::GetObjId | (void) |
Declared in file: hzDatabase.h
Defined in file : hdbObject.cpp
Function Logic:
Function body:
uint32_t hdbObject::GetObjId (void)
{
// Get the object id.
//
// Argument: nObjId The Object ID
// Returns: The object id
if (!m_pRoot)
return 0;
return m_pRoot->m_ObjId ;
}