OOP representation of Transforms
[satune.git] / src / ASTTransform / pass.cc
1 #include "pass.h"
2 #include "tunable.h"
3 #include "csolver.h"
4
5 Pass::Pass(Tunables _tunable, TunableDesc* _desc): 
6         tunable(_tunable),
7         tunableDesc(_desc)
8 {
9         
10 }
11
12 Pass::~Pass(){
13         
14 }