From 2eae362fd3f50325067fa3d7e13db6882df80e76 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 27 Sep 2019 18:09:07 +0300 Subject: Texo initial. --- src/file.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/file.hpp (limited to 'src/file.hpp') diff --git a/src/file.hpp b/src/file.hpp new file mode 100644 index 0000000..68e31cd --- /dev/null +++ b/src/file.hpp @@ -0,0 +1,16 @@ +#ifndef TEXO_INCLUDED_FILE +#define TEXO_INCLUDED_FILE + +#include "texo.hpp" + + +class TexoFileExporter: public TexoExporter { +public: + TexoFileExporter(FILE *file); + void Put(const char c); +private: + FILE *file; +}; + + +#endif -- cgit v1.2.3