1 | #include "generator.h" |
2 | |
3 | class cpp_conversion_generator : public generator { |
4 | void cast(const isl_class &clazz, const char *to); |
5 | void convert(const isl_class &clazz, const char *from, const char *to, |
6 | const char *function); |
7 | void print(const isl_class &clazz); |
8 | public: |
9 | cpp_conversion_generator(SourceManager &SM, |
10 | set<RecordDecl *> &exported_types, |
11 | set<FunctionDecl *> exported_functions, |
12 | set<FunctionDecl *> functions) : |
13 | generator(SM, exported_types, exported_functions, functions) {} |
14 | virtual void generate(); |
15 | }; |
16 | |