14 lines
228 B
C++
14 lines
228 B
C++
|
|
#include "ASTTransformation.h"
|
||
|
|
|
||
|
|
ASTTransformation::ASTTransformation() {
|
||
|
|
//
|
||
|
|
}
|
||
|
|
|
||
|
|
ASTTransformation::~ASTTransformation() {
|
||
|
|
//
|
||
|
|
}
|
||
|
|
|
||
|
|
virtual NodeTree<Symbol*>* ASTTransformation::transform(NodeTree<ASTData>* from) {
|
||
|
|
return NULL;
|
||
|
|
}
|