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