Files
kraken/src/ASTTransformation.cpp

14 lines
219 B
C++
Raw Normal View History

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