eoOpSelector has a method called getOp that HAD to return a non-constant reference to an operator; in fact it returned a CONST reference. Now, I've changed it

This commit is contained in:
victor 1999-12-21 12:12:29 +00:00
commit bf3e77d97b

View file

@ -55,7 +55,7 @@ public:
modified or whatever
@param _id a previously assigned ID
@throw runtime_exception if the ID does not exist*/
virtual const eoOp<EOT>& getOp( ID _id ) = 0;
virtual eoOp<EOT>& getOp( ID _id ) = 0;
/** Remove an operator from the operator set
@param _id a previously assigned ID