| Return Type | Function name | Arguments |
|---|---|---|
| hzDeltaClient* | hzDeltaClient::GetInstance | (void) |
Declared in file: hzDelta.h
Defined in file : hzDelta.cpp
Function Logic:
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 ;
}