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