#include "Compiler.h" #include using namespace std; Compiler::Compiler(FILE * output_file) { m_outfile = output_file; write("#include \n"); write("\n"); } void Compiler::write(const string & str) { fputs(str.c_str(), m_outfile); }