#ifndef COMPILER_H #define COMPILER_H #include #include class Compiler { public: Compiler(FILE * output_file); void write(const std::string & str); protected: FILE * m_outfile; }; #endif