blob: 8e10db72537e19ca66b842dbdac9d852f247f35b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "generator.h"
class cpp_conversion_generator : public generator {
public:
cpp_conversion_generator(set<RecordDecl *> &exported_types,
set<FunctionDecl *> exported_functions,
set<FunctionDecl *> functions) :
generator(exported_types, exported_functions, functions) {}
virtual void generate();
};
|