diff --git a/coding/internal/file_data.hpp b/coding/internal/file_data.hpp index 7be0c8c2e7..da5f178fd2 100644 --- a/coding/internal/file_data.hpp +++ b/coding/internal/file_data.hpp @@ -5,9 +5,14 @@ #include "../../base/base.hpp" #include "../../std/string.hpp" +#include "../../std/target_os.hpp" +#include "../../std/noncopyable.hpp" + +#ifdef OMIM_OS_WINDOWS + #include +#endif #ifdef OMIM_OS_TIZEN - namespace Tizen { namespace Io @@ -15,13 +20,12 @@ namespace Tizen class File; } } - #endif namespace my { -class FileData +class FileData: private noncopyable { public: /// @note Do not change order (@see FileData::FileData). @@ -45,9 +49,6 @@ public: private: - FileData(FileData const & other); - FileData const & operator()(FileData const & other); - #ifdef OMIM_OS_TIZEN Tizen::Io::File * m_File; #else