brintos

brintos / llvm-project-archived public Read only

0
0
Text · 524 B · 57856b2 Raw
16 lines · c
1#include "generator.h"2 3class 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);8public: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