summaryrefslogtreecommitdiff
path: root/src/importer.hpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-11-13 19:16:21 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-11-13 19:16:21 +0300
commita45cb537ab82f13f29f1bc33dd8bf998b3fb9c9b (patch)
tree1b9473f7f27221a5de56bb51edacd5be9a61a6b9 /src/importer.hpp
parented7a63015c1583d5544ac18bbaccaedc95f3e5e3 (diff)
downloadtexo-a45cb537ab82f13f29f1bc33dd8bf998b3fb9c9b.tar
texo-a45cb537ab82f13f29f1bc33dd8bf998b3fb9c9b.tar.xz
texo-a45cb537ab82f13f29f1bc33dd8bf998b3fb9c9b.zip
Cosmetical changes.
Diffstat (limited to 'src/importer.hpp')
-rw-r--r--src/importer.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/importer.hpp b/src/importer.hpp
index 9280a34..c5a302d 100644
--- a/src/importer.hpp
+++ b/src/importer.hpp
@@ -12,14 +12,14 @@
*/
class TexoImporter {
public:
- TexoImporter(TexoProducer &producer);
+ TexoImporter(TexoProducer & producer);
~TexoImporter();
bool End();
bool Put(char c);
- bool Put(const ScriptVariable &s);
- bool Put(FILE *f);
+ bool Put(const ScriptVariable & s);
+ bool Put(FILE * f);
protected:
@@ -27,12 +27,12 @@ protected:
virtual bool TruePut(char c) = 0;
- virtual bool TruePut(const ScriptVariable &str);
- virtual bool TruePut(FILE *file);
+ virtual bool TruePut(const ScriptVariable & str);
+ virtual bool TruePut(FILE * file);
- TexoProducer &producer;
- bool ok;
+ TexoProducer & producer;
+ bool ok;
};