add new class
[satune.git] / src / ASTTransform / elementopt.h
1 #ifndef ELEMENTOPT_H
2 #define ELEMENTOPT_H
3 #include "classlist.h"
4 #include "transform.h"
5
6 class ElementOpt : public Transform {
7 public:
8         ElementOpt(CSolver *_solver);
9         ~ElementOpt();
10         void doTransform();
11
12         CMEMALLOC;
13 private:
14 };
15
16 #endif