summaryrefslogtreecommitdiff
path: root/src/importer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/importer.cpp')
-rw-r--r--src/importer.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/importer.cpp b/src/importer.cpp
index cb8d62e..73f23e6 100644
--- a/src/importer.cpp
+++ b/src/importer.cpp
@@ -1 +1,22 @@
#include "importer.hpp"
+
+
+TexoImporter::TexoImporter(TexoProducer &producer): producer(producer)
+{}
+
+void TexoImporter::Put(const ScriptVariable &str)
+{
+ const int len = str.Length();
+ for (int i = 0; i < len; ++i) {
+ Put(str[i]);
+ }
+}
+
+void TexoImporter::Put(FILE *file)
+{
+ if (file) {
+ for (int c = fgetc(file); c != EOF; c = fgetc(file)) {
+ Put(c);
+ }
+ }
+}