Index

C++ Code Documentation

template <class NUMBER> eval methods (ExprBase)

File: BASE/eval/ExprBase.H

  • struct expr_variable;
  • expr_variable( expr_variable<NUMBER> const &x ) : _name( x._name ), _value( x._value );
    copy constructor
  • ~expr_variable();
    destructor
  • expr_variable<NUMBER> &operator=( expr_variable<NUMBER> const &x );
    assignment operator
  • return *this;
  • };
  • base::String _name;
  • NUMBER _value;


template <class NUMBER> eval methods (ExprBase) GANG