| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hzNumexp::Parse | (const char*,) |
Declared in file: hzNumexp.h
Defined in file : hzNumexp.cpp
Function Logic:
Function body:
hzEcode hzNumexp::Parse (const char* pExp)
{
_hzfunc("hzNumexp::Parse_a") ;
hzEcode rc ;
rc = TokenizeString(m_Tokens, pExp, TOK_MO_BOOL) ;
if (rc != E_OK)
return E_SYNTAX ;
m_pRoot = Parse() ;
if (!m_pRoot)
return E_SYNTAX ;
return E_OK ;
}