More stuff! Tons of stuff!

This commit is contained in:
Markus Hauschild
2013-06-01 00:16:38 +02:00
parent 28ca85b94e
commit a778d524b1
11 changed files with 111 additions and 11 deletions

14
inc/AST/Statement.h Normal file
View 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