summaryrefslogtreecommitdiff
path: root/src/file.hpp
blob: 1cfea0ba44fe5968e4b77841cad4247ba1bba7f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef TEXO_INCLUDED_FILE
#define TEXO_INCLUDED_FILE

#include "exporter.hpp"
#include <stdio.h>


class TexoExporterFile: public TexoExporter {
public:
    TexoExporterFile(FILE *file);

    void Put(char c);
    void Put(const ScriptVariable &str);

private:
    FILE *file;
};


#endif