summaryrefslogtreecommitdiff
path: root/src/file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/file.cpp')
-rw-r--r--src/file.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/file.cpp b/src/file.cpp
new file mode 100644
index 0000000..845c101
--- /dev/null
+++ b/src/file.cpp
@@ -0,0 +1,9 @@
+#include "file.hpp"
+
+
+TexoFileExporter::TexoFileExporter(FILE *file): file(file) {}
+
+void TexoFileExporter::Put(const char c)
+{
+ fputc(c, file);
+}