| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hdbObject::CommitBinaries | (hdbBinRepos*,) |
Declared in file: hzDatabase.h
Defined in file : hdbObject.cpp
Function Logic:
Function body:
hzEcode hdbObject::CommitBinaries (hdbBinRepos* pRepos)
{
_hzfunc("hdbObject::CommitBinaries") ;
hzEcode rc = E_OK ;
if (!this) hzexit(E_CORRUPT, "No instance") ;
if (!pRepos) return hzerr(E_NOINIT, "No target binary datum repository") ;
if (!m_pClass) return hzerr(E_ARGUMENT, "No data class") ;
if (!m_pRoot)
return E_OK ;
rc = _commit_binaries_r(pRepos, m_pRoot) ;
threadLog("returned from commit_br\n") ;
return rc ;
}