Files
kraken/src/ASTTransformation.cpp

14 lines
228 B
C++
Raw Normal View History

#include "ASTTransformation.h"
ASTTransformation::ASTTransformation() {
//
}
ASTTransformation::~ASTTransformation() {
//
}
virtual NodeTree<Symbol*>* ASTTransformation::transform(NodeTree<ASTData>* from) {
return NULL;
}