10 lines
196 B
C
10 lines
196 B
C
|
#pragma once
|
||
|
#include "ExprNode.h"
|
||
|
|
||
|
class StatementNode : public ASTNode
|
||
|
{
|
||
|
std::shared_ptr<ExprNode> child;
|
||
|
public:
|
||
|
StatementNode(std::shared_ptr<ExprNode> child);
|
||
|
~StatementNode();
|
||
|
};
|