codegen_test.sh.in: determine option to produce context diff
[isl.git] / interface / cpp_conversion.h
blob57856b2c6a5de7cf381c635174206d79c75e057d
1 #include "generator.h"
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();