#pragma once #include "ExprNode.h" class StatementNode : public ASTNode { std::shared_ptr child; public: StatementNode(std::shared_ptr child); ~StatementNode(); };