Return TypeFunction nameArguments
hzDeltaClient*hzDeltaClient::GetInstance(void)

Declared in file: hzDelta.h
Defined in file : hzDelta.cpp

Function Logic:

0:START 1:_hzGlobal_DeltaClient 2:hzexit 3:_hzGlobal_DeltaClient 4:Return _hzGlobal_DeltaClient

Function body:

hzDeltaClient* hzDeltaClient::GetInstance (void)
{
   _hzfunc("hzDeltaClient::GetInstance") ;
   if (_hzGlobal_DeltaClient)
       hzexit(E_DUPLICATE, "hzDeltaClient is a singleton and already allocated") ;
   _hzGlobal_DeltaClient = new hzDeltaClient() ;
   return _hzGlobal_DeltaClient ;
}