Added empty statement

This commit is contained in:
Rafał Grodziński
2025-06-01 10:39:15 +09:00
parent 05e3def411
commit 28e892ca12
5 changed files with 59 additions and 10 deletions

22
src/Statement.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef STATEMENT_H
#define STATEMENT_H
#include <iostream>
using namespace std;
class Statement {
public:
enum Kind {
INVALID
};
private:
Kind kind;
public:
Statement(Kind kind);
string toString();
};
#endif