summaryrefslogtreecommitdiff
path: root/src/html.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/html.cpp')
-rw-r--r--src/html.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/html.cpp b/src/html.cpp
index 5155661..92b4e05 100644
--- a/src/html.cpp
+++ b/src/html.cpp
@@ -172,3 +172,13 @@ void TexoImporterHTML::Put(char c)
{ // TODO
producer.Put(Texo(c));
}
+
+void TexoImporterHTML::Put(const ScriptVariable &str)
+{
+ TexoImporter::Put(str);
+}
+
+void TexoImporterHTML::Put(FILE *file)
+{
+ TexoImporter::Put(file);
+}