From 0be032c6998e712dc2c9f2ed97c3491d89eb05af Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 31 Jan 2020 17:16:27 +0300 Subject: [xift] Almost done. --- src/exporter.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/exporter.hpp (limited to 'src/exporter.hpp') diff --git a/src/exporter.hpp b/src/exporter.hpp new file mode 100644 index 0000000..b28ad6c --- /dev/null +++ b/src/exporter.hpp @@ -0,0 +1,12 @@ +#ifndef XIFT_INCLUDED_EXPORTER +#define XIFT_INCLUDED_EXPORTER + + +class XiftExporter { +public: + virtual void Put(char c) = 0; + virtual void Put(const char *str); +}; + + +#endif -- cgit v1.2.3