From 4c21d0f4623dc2842dc5a15634c4541112617ffc Mon Sep 17 00:00:00 2001 From: sdottaka Date: Sun, 27 Jan 2013 17:40:31 -0800 Subject: [PATCH] Fix mixed eol-style --- Src/TFile.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Src/TFile.h b/Src/TFile.h index d2b1b353f..8a04fbdb9 100644 --- a/Src/TFile.h +++ b/Src/TFile.h @@ -1,18 +1,18 @@ #ifndef _TFILE_H_ #define _TFILE_H_ -#define POCO_NO_UNWINDOWS 1 -#include -#include "UnicodeString.h" -#include "unicoder.h" - -class TFile : public Poco::File -{ -public: - TFile(const String& path) : File(ucr::toUTF8(path)) {} - void copyTo(const String& path) const { File::copyTo(ucr::toUTF8(path)); } - void moveTo(const String& path) { File::moveTo(ucr::toUTF8(path)); } - void renameTo(const String& path) { File::renameTo(ucr::toUTF8(path)); } -}; - -#endif +#define POCO_NO_UNWINDOWS 1 +#include +#include "UnicodeString.h" +#include "unicoder.h" + +class TFile : public Poco::File +{ +public: + TFile(const String& path) : File(ucr::toUTF8(path)) {} + void copyTo(const String& path) const { File::copyTo(ucr::toUTF8(path)); } + void moveTo(const String& path) { File::moveTo(ucr::toUTF8(path)); } + void renameTo(const String& path) { File::renameTo(ucr::toUTF8(path)); } +}; + +#endif -- 2.11.0