summaryrefslogtreecommitdiff
path: root/src/importer.hpp
diff options
context:
space:
mode:
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;
};