Return TypeFunction nameArguments
boolhzNumexpForm::AddOperand(hzNumexpTerm*,)

Declared and defined in file: hzNumexp.h

Function Logic:

0:START 1:unknown 2:m_pA 3:Return true 4:unknown 5:m_pB 6:Return true 7:Return false

Function body:

bool hzNumexpForm::AddOperand (hzNumexpTerm* pOperand)
   {
       if (!m_pA)
           { m_pA = pOperand ; return true ; }
       if (!m_pB)
           { m_pB = pOperand ; return true ; }
       return false ;
   }