summaryrefslogtreecommitdiff
path: root/src/file.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/file.hpp')
-rw-r--r--src/file.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/file.hpp b/src/file.hpp
index 5f8adb6..171e6d3 100644
--- a/src/file.hpp
+++ b/src/file.hpp
@@ -11,15 +11,15 @@
*/
class TexoExporterFile: public TexoExporter {
public:
- TexoExporterFile(FILE *file);
+ TexoExporterFile(FILE * file);
bool Put(char c);
- bool Put(const ScriptVariable &str);
+ bool Put(const ScriptVariable & str);
private:
- FILE *file;
+ FILE * file;
};