2013-09-26 15:16:58 -04:00
|
|
|
#ifndef ASTTRANSFORMATION_H
|
|
|
|
|
#define ASTTRANSFORMATION_H
|
|
|
|
|
|
2013-10-02 03:15:20 -04:00
|
|
|
#include "ASTData.h"
|
2013-09-26 15:16:58 -04:00
|
|
|
#include "NodeTransformation.h"
|
|
|
|
|
|
2013-10-02 03:15:20 -04:00
|
|
|
class ASTTransformation: public NodeTransformation<Symbol,ASTData> {
|
2013-09-26 15:16:58 -04:00
|
|
|
public:
|
|
|
|
|
ASTTransformation();
|
|
|
|
|
~ASTTransformation();
|
2013-10-02 03:15:20 -04:00
|
|
|
virtual NodeTree<ASTData>* transform(NodeTree<Symbol>* from);
|
2013-09-26 15:16:58 -04:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
//Nothing
|
|
|
|
|
};
|
2013-10-02 03:15:20 -04:00
|
|
|
#endif
|