Return TypeFunction nameArguments
hzEcodehdbADP::RegisterRegexType(const hdbRgxtype*,)

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

Function Logic:

0:START 1:!pRgx 2:Return E_ARGUMENT 3:!pRgx->strType() 4:Return E_NOINIT 5:Return m_mapDatatypes.Insert(pRgx->strType(),pRgx)

Function body:

hzEcode hdbADP::RegisterRegexType (const hdbRgxtype* pRgx)
{
   _hzfunc("hdbADP::RegisterRegexType") ;
   if (!pRgx)
       return E_ARGUMENT ;
   if (!pRgx->strType())
       return E_NOINIT ;
   return m_mapDatatypes.Insert(pRgx->strType(), pRgx) ;
}