#pragma once #include "syntax_tree.hpp" class Sum: SyntaxTree { public: Sum(SyntaxTree *left, SyntaxTree *right); float eval() const; };