summaryrefslogtreecommitdiff
path: root/examples/lines.cpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-11-05 19:46:50 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-11-05 19:46:50 +0300
commit73345c7dc06a6488f34d4a76906a62171a519278 (patch)
tree28b1c588873a8154db03ba9abe344412c5ef2587 /examples/lines.cpp
parent55fd715a4ea184644600be54531ce5b28bec9a90 (diff)
downloadtexo-73345c7dc06a6488f34d4a76906a62171a519278.tar
texo-73345c7dc06a6488f34d4a76906a62171a519278.tar.xz
texo-73345c7dc06a6488f34d4a76906a62171a519278.zip
[texo] Medium has been changed.
Diffstat (limited to 'examples/lines.cpp')
-rw-r--r--examples/lines.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/lines.cpp b/examples/lines.cpp
index 5c24444..04d06ab 100644
--- a/examples/lines.cpp
+++ b/examples/lines.cpp
@@ -14,6 +14,7 @@ void plain()
TexoImporterLines importer(producer);
FILE *file = fopen("lines.txt", "r");
importer.Put(file);
+ importer.End();
fclose(file);
}
@@ -25,6 +26,7 @@ void html()
TexoImporterLines importer(producer);
FILE *file = fopen("lines.txt", "r");
importer.Put(file);
+ importer.End();
fclose(file);
}
@@ -36,6 +38,7 @@ void markdown()
TexoImporterLines importer(producer);
FILE *file = fopen("lines.txt", "r");
importer.Put(file);
+ importer.End();
fclose(file);
}
@@ -47,6 +50,7 @@ void lines()
TexoImporterLines importer(producer);
FILE *file = fopen("lines.txt", "r");
importer.Put(file);
+ importer.End();
fclose(file);
}