#pragma once #include "syntax_tree.hpp" class Operand: SyntaxTree { int value; public: Operand(int value); float eval() const; };