Class OpExpr declaration
We will not need print or eval because we will use OpExpr objects only as base classes for other objects
class OpExpr: public Expr {
public:
OpExpr(const char*);
protected:
const char* op;
};
Previous slide
Next slide
Back to first slide
View graphic version