summaryrefslogtreecommitdiff
path: root/src/file.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/file.hpp')
-rw-r--r--src/file.hpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/file.hpp b/src/file.hpp
index 1cfea0b..5f8adb6 100644
--- a/src/file.hpp
+++ b/src/file.hpp
@@ -5,12 +5,18 @@
#include <stdio.h>
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+ * Texo File Exporter
+ * Simple utility class to make output into FILE *variable.
+ */
class TexoExporterFile: public TexoExporter {
public:
TexoExporterFile(FILE *file);
- void Put(char c);
- void Put(const ScriptVariable &str);
+
+ bool Put(char c);
+ bool Put(const ScriptVariable &str);
+
private:
FILE *file;