Added in structure for tree transformations.
This commit is contained in:
16
include/ASTTransformation.h
Normal file
16
include/ASTTransformation.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef ASTTRANSFORMATION_H
|
||||
#define ASTTRANSFORMATION_H
|
||||
|
||||
#include "NodeTransformation.h"
|
||||
|
||||
class ASTTransformation: public Transformation<Symbol*,ASTData> {
|
||||
public:
|
||||
ASTTransformation();
|
||||
~ASTTransformation();
|
||||
virtual NodeTree<Symbol*>* transform(NodeTree<ASTData>* from);
|
||||
|
||||
private:
|
||||
//Nothing
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user