X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c70014d966bbfa08d201ca24c825f2d88cc3975..330be5349367f48b25c9f19dbeadd0f30593c830:/include/wx/wfstream.h diff --git a/include/wx/wfstream.h b/include/wx/wfstream.h index 0b4be35d9b..d0d50a608c 100644 --- a/include/wx/wfstream.h +++ b/include/wx/wfstream.h @@ -18,7 +18,7 @@ #include "wx/defs.h" -#if wxUSE_STREAMS && wxUSE_FILE +#if wxUSE_STREAMS #include "wx/object.h" #include "wx/string.h" @@ -26,6 +26,8 @@ #include "wx/file.h" #include "wx/ffile.h" +#if wxUSE_FILE + // ---------------------------------------------------------------------------- // wxFileStream using wxFile // ---------------------------------------------------------------------------- @@ -41,7 +43,7 @@ public: wxFileOffset GetLength() const; bool Ok() const { return m_file->IsOpened(); } - bool IsSeekable() const { return m_file->GetFileType() == wxFILE_TYPE_DISK; } + bool IsSeekable() const { return m_file->GetKind() == wxFILE_KIND_DISK; } protected: wxFileInputStream(); @@ -70,7 +72,7 @@ public: wxFileOffset GetLength() const; bool Ok() const { return m_file->IsOpened(); } - bool IsSeekable() const { return m_file->GetFileType() == wxFILE_TYPE_DISK; } + bool IsSeekable() const { return m_file->GetKind() == wxFILE_KIND_DISK; } protected: wxFileOutputStream(); @@ -96,6 +98,10 @@ private: DECLARE_NO_COPY_CLASS(wxFileStream) }; +#endif //wxUSE_FILE + +#if wxUSE_FFILE + // ---------------------------------------------------------------------------- // wxFFileStream using wxFFile // ---------------------------------------------------------------------------- @@ -111,7 +117,7 @@ public: wxFileOffset GetLength() const; bool Ok() const { return m_file->IsOpened(); } - bool IsSeekable() const { return m_file->GetFileType() == wxFILE_TYPE_DISK; } + bool IsSeekable() const { return m_file->GetKind() == wxFILE_KIND_DISK; } protected: wxFFileInputStream(); @@ -140,7 +146,7 @@ public: wxFileOffset GetLength() const; bool Ok() const { return m_file->IsOpened(); } - bool IsSeekable() const { return m_file->GetFileType() == wxFILE_TYPE_DISK; } + bool IsSeekable() const { return m_file->GetKind() == wxFILE_KIND_DISK; } protected: wxFFileOutputStream(); @@ -166,6 +172,8 @@ private: DECLARE_NO_COPY_CLASS(wxFFileStream) }; -#endif // wxUSE_STREAMS && wxUSE_FILE +#endif //wxUSE_FFILE + +#endif // wxUSE_STREAMS #endif // _WX_WXFSTREAM_H__