From 9a23fd146be4ba64b0cb720993bdc73a514fecf2 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 18 Oct 2019 12:37:46 +0300 Subject: . --- src/file.hpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/file.hpp') 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 -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; -- cgit v1.2.3