Return Type | Function name | Arguments |
---|---|---|
hzEcode | hdbObject::SetRepos | (const hdbObjRepos*,) |
Declared in file: hzDatabase.h
Defined in file : hdbObject.cpp
Function Logic:
Function body:
hzEcode hdbObject::SetRepos (const hdbObjRepos* pRepos) { if (m_pRepos) { if (m_pRepos == pRepos) return E_OK ; return E_TYPE ; } m_pRepos = pRepos ; return E_OK ; }