Return TypeFunction nameArguments
hzEcodehdsApp::InitApp(const hzDomain&,const hzString&,const hzString&,)

Declared in file: hzDissemino.h
Defined in file : hdsCore.cpp

Function Logic:

0:START 1:m_Domain 2:Return E_SETONCE 3:!domain||!baseDir||!rootFile 4:Return E_ARGUMENT 5:m_Appname m_Domain m_BaseDir m_RootFile 6:Return E_OK

Function body:

hzEcode hdsApp::InitApp (const hzDomain& domain, const hzString& baseDir, const hzString& rootFile)
{
   _hzfunc("hdsApp::Init") ;
   if (m_Domain)
       return E_SETONCE ;
   if (!domain || !baseDir || !rootFile)
       return E_ARGUMENT ;
   m_Appname = domain ;
   m_Domain = domain ;
   m_BaseDir = baseDir ;
   m_RootFile = rootFile ;
   return E_OK ;
}