#ifndef ASTTRANSFORMATION_H #define ASTTRANSFORMATION_H #include "NodeTransformation.h" class ASTTransformation: public Transformation { public: ASTTransformation(); ~ASTTransformation(); virtual NodeTree* transform(NodeTree* from); private: //Nothing }; #endif