Export the hdbObject value as a JSON

Return TypeFunction nameArguments
hzEcodehdbObject::ExportJSON(hzChain&,)

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

Function Logic:

0:START 1:unknown 2:Return E_NOINIT 3:items 4:Return _export_json_r(J,m_pClass,0)

Function body:

hzEcode hdbObject::ExportJSON (hzChain& J)
{
   //  Export the hdbObject value as a JSON
   //  
   //  Argument: J The hzChain to be populated by the JSON value
   _hzfunc("hdbObject::ExportJSON") ;
   if (!m_pClass)
       return E_NOINIT ;
   J.Clear() ;
   return _export_json_r(J, m_pClass, 0);
}