More stuff! Tons of stuff!
This commit is contained in:
14
inc/AST/Statement.h
Normal file
14
inc/AST/Statement.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef STATEMENT_H
|
||||
#define STATEMENT_H
|
||||
|
||||
#include "AST/ASTElement.h"
|
||||
|
||||
class Statement : public ASTElement {
|
||||
public:
|
||||
Statement();
|
||||
virtual ~Statement();
|
||||
|
||||
virtual void accept(ASTVisitor* visitor) = 0;
|
||||
};
|
||||
|
||||
#endif // STATEMENT_H
|
||||
Reference in New Issue
Block a user