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

View File

@@ -1,10 +1,14 @@
#ifndef ASTVISITOR_H
#define ASTVISITOR_H
#include "VariableDefinition.h"
class ASTVisitor {
public:
ASTVisitor();
virtual ~ASTVisitor();
virtual void visit(VariableDefinition* e) = 0;
};
#endif // ASTVISITOR_H