18 lines
389 B
C++
18 lines
389 B
C++
#ifndef ASTTRANSFORMATION_H
|
|
#define ASTTRANSFORMATION_H
|
|
|
|
#include "ASTData.h"
|
|
#include "NodeTransformation.h"
|
|
|
|
class ASTTransformation: public NodeTransformation<Symbol,ASTData> {
|
|
public:
|
|
ASTTransformation();
|
|
~ASTTransformation();
|
|
virtual NodeTree<ASTData>* transform(NodeTree<Symbol>* from);
|
|
std::string concatSymbolTree(NodeTree<Symbol>* root);
|
|
|
|
private:
|
|
//Nothing
|
|
};
|
|
#endif
|