Return TypeFunction nameArguments
hzEcodehdbADP::RegisterBinRepos(hdbBinRepos*,)

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

Function Logic:

0:START 1:!pRepos 2:Return E_ARGUMENT 3:!pRepos->txtName() 4:Return E_NOINIT 5:Return m_mapBinRepos.Insert(pRepos->strName(),pRepos)

Function body:

hzEcode hdbADP::RegisterBinRepos (hdbBinRepos* pRepos)
{
   _hzfunc("hdbADP::RegisterBinRepos") ;
   if (!pRepos)
       return E_ARGUMENT ;
   if (!pRepos->txtName())
       return E_NOINIT ;
   return m_mapBinRepos.Insert(pRepos->strName(), pRepos) ;
}