#ifndef CODEGEN_HH #define CODEGEN_HH #include "visitor.hh" #include #include #include namespace codegen { const std::vector &supported(); bool supported(const std::string &lang); void emit_code(const std::string &lang, ast::DProg *dprog, const char *output_name); }; #endif // CODEGEN_HH