19 lines
243 B
C++
19 lines
243 B
C++
|
|
#ifndef COMPILER_H
|
|
#define COMPILER_H
|
|
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
class Compiler
|
|
{
|
|
public:
|
|
Compiler(FILE * output_file);
|
|
void write(const std::string & str);
|
|
|
|
protected:
|
|
FILE * m_outfile;
|
|
};
|
|
|
|
#endif
|