jtlc/main/Compiler.h
josh 7b8436acb4 added Compiler class to pass to Node::process() instead of a FILE *
git-svn-id: svn://anubis/jtlc/trunk@22 f5bc74b8-7b62-4e90-9214-7121d538519f
2010-01-14 20:27:01 +00:00

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