From 8d4981fcc1c545396df3eac87a3c1a67f3d30038 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Mon, 3 Feb 2020 15:53:56 +0300 Subject: [texo] Abolished dependency on ScriptPP. --- src/file.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/file.hpp') diff --git a/src/file.hpp b/src/file.hpp index 171e6d3..280e6ed 100644 --- a/src/file.hpp +++ b/src/file.hpp @@ -9,17 +9,17 @@ * Texo File Exporter * Simple utility class to make output into FILE *variable. */ -class TexoExporterFile: public TexoExporter { +class TexoFile: public TexoExporter { public: - TexoExporterFile(FILE * file); + TexoFile(FILE *file); bool Put(char c); - bool Put(const ScriptVariable & str); + bool Put(const char *str); private: - FILE * file; + FILE *file; }; -- cgit v1.2.3