function definition
I have this definition :
virtual const boost::any operator() ( OperandList operands ) = 0;
what the " = 0 " means?
It's a pure virtual function, meaning it must be overridden in a derived class.
Topic archived. No new replies allowed.