Added empty statement
This commit is contained in:
22
src/Statement.h
Normal file
22
src/Statement.h
Normal 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
|
||||
Reference in New Issue
Block a user