#pragma once #include enum binop { PLUS, MINUS, TIMES, DIVIDE }; std::string op_name(binop op); std::string op_action(binop op);