Ejemplo n.º 1
0
 public MExpExpression_Additive()
 {
     m_exp_expression1 = new HoldingSingle <MExpElement, MExpExpression>(this);
     m_exp_binary_additive_operator = new HoldingSingle <MExpElement, MExpBinaryOperator_Additive>(this);
     m_exp_expression2 = new HoldingSingle <MExpElement, MExpExpression>(this);
     OnConstructor();
 }
Ejemplo n.º 2
0
 public MExpExpression_Sign()
 {
     m_exp_unary_sign_operator = new HoldingSingle <MExpElement, MExpUnaryOperator_Sign>(this);
     m_exp_expression          = new HoldingSingle <MExpElement, MExpExpression>(this);
     OnConstructor();
 }
Ejemplo n.º 3
0
 public MExpEntry()
 {
     m_exp_expression = new HoldingSingle <MExpElement, MExpExpression>(this);
     OnConstructor();
 }
Ejemplo n.º 4
0
 public MExpExpression_Function()
 {
     m_exp_function = new HoldingSingle <MExpElement, MExpFunction>(this);
     OnConstructor();
 }