| Return Type | Function name | Arguments |
|---|---|---|
| hdsSphere* | hdsSphere::GetInstance | (hzLogger&,) |
Declared in file: hzDissemino.h
Defined in file : hdsCore.cpp
Function Logic:
Function body:
hdsSphere* hdsSphere::GetInstance (hzLogger& pLog)
{
_hzfunc("hdsSphere::GetInstance") ;
if (_hzGlobal_Dissemino)
hzwarn(E_SETONCE, "hdsApp is a singleton class") ;
else
{
_hzGlobal_Dissemino = new hdsSphere() ;
_hzGlobal_Dissemino->m_pLog = &pLog ;
}
return _hzGlobal_Dissemino ;
}