summaryrefslogtreecommitdiff
path: root/src/file.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/file.hpp')
-rw-r--r--src/file.hpp8
1 files changed, 4 insertions, 4 deletions
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;
};