diff options
Diffstat (limited to 'src/file.hpp')
| -rw-r--r-- | src/file.hpp | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/src/file.hpp b/src/file.hpp index c867bcc..1cfea0b 100644 --- a/src/file.hpp +++ b/src/file.hpp @@ -1,13 +1,16 @@  #ifndef TEXO_INCLUDED_FILE  #define TEXO_INCLUDED_FILE -#include "texo.hpp" +#include "exporter.hpp" +#include <stdio.h> -class TexoFileExporter: public TexoExporter { +class TexoExporterFile: public TexoExporter {  public: -    TexoFileExporter(FILE *file); -    void Put(const char c); +    TexoExporterFile(FILE *file); + +    void Put(char c); +    void Put(const ScriptVariable &str);  private:      FILE *file; | 
