X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af49c4b8a2d3553e733e71c7dd3911881f4c1a2a..5a9b59346b4de5c27d2fa595eaaac5b78dda0bcf:/include/wx/wfstream.h diff --git a/include/wx/wfstream.h b/include/wx/wfstream.h index 3987d3e1dc..a38322818f 100644 --- a/include/wx/wfstream.h +++ b/include/wx/wfstream.h @@ -12,7 +12,7 @@ #ifndef _WX_WXFSTREAM_H__ #define _WX_WXFSTREAM_H__ -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "wfstream.h" #endif @@ -30,7 +30,7 @@ // wxFileStream using wxFile // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxFileInputStream: public wxInputStream { +class WXDLLIMPEXP_BASE wxFileInputStream: public wxInputStream { public: wxFileInputStream(const wxString& ifileName); wxFileInputStream(wxFile& file); @@ -45,15 +45,17 @@ class WXDLLEXPORT wxFileInputStream: public wxInputStream { wxFileInputStream(); size_t OnSysRead(void *buffer, size_t size); - off_t OnSysSeek(off_t pos, wxSeekMode mode); - off_t OnSysTell() const; + wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode); + wxFileOffset OnSysTell() const; protected: wxFile *m_file; bool m_file_destroy; + + DECLARE_NO_COPY_CLASS(wxFileInputStream) }; -class WXDLLEXPORT wxFileOutputStream: public wxOutputStream { +class WXDLLIMPEXP_BASE wxFileOutputStream: public wxOutputStream { public: wxFileOutputStream(const wxString& fileName); wxFileOutputStream(wxFile& file); @@ -73,24 +75,31 @@ class WXDLLEXPORT wxFileOutputStream: public wxOutputStream { wxFileOutputStream(); size_t OnSysWrite(const void *buffer, size_t size); - off_t OnSysSeek(off_t pos, wxSeekMode mode); - off_t OnSysTell() const; + wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode); + wxFileOffset OnSysTell() const; protected: wxFile *m_file; bool m_file_destroy; + + DECLARE_NO_COPY_CLASS(wxFileOutputStream) }; -class WXDLLEXPORT wxFileStream: public wxFileInputStream, public wxFileOutputStream { - public: - wxFileStream(const wxString& fileName); +class WXDLLIMPEXP_BASE wxFileStream : public wxFileInputStream, + public wxFileOutputStream +{ +public: + wxFileStream(const wxString& fileName); + +private: + DECLARE_NO_COPY_CLASS(wxFileStream) }; // ---------------------------------------------------------------------------- // wxFFileStream using wxFFile // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxFFileInputStream: public wxInputStream { +class WXDLLIMPEXP_BASE wxFFileInputStream: public wxInputStream { public: wxFFileInputStream(const wxString& ifileName); wxFFileInputStream(wxFFile& file); @@ -105,15 +114,17 @@ class WXDLLEXPORT wxFFileInputStream: public wxInputStream { wxFFileInputStream(); size_t OnSysRead(void *buffer, size_t size); - off_t OnSysSeek(off_t pos, wxSeekMode mode); - off_t OnSysTell() const; + wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode); + wxFileOffset OnSysTell() const; protected: wxFFile *m_file; bool m_file_destroy; + + DECLARE_NO_COPY_CLASS(wxFFileInputStream) }; -class WXDLLEXPORT wxFFileOutputStream: public wxOutputStream { +class WXDLLIMPEXP_BASE wxFFileOutputStream: public wxOutputStream { public: wxFFileOutputStream(const wxString& fileName); wxFFileOutputStream(wxFFile& file); @@ -133,18 +144,26 @@ class WXDLLEXPORT wxFFileOutputStream: public wxOutputStream { wxFFileOutputStream(); size_t OnSysWrite(const void *buffer, size_t size); - off_t OnSysSeek(off_t pos, wxSeekMode mode); - off_t OnSysTell() const; + wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode); + wxFileOffset OnSysTell() const; protected: wxFFile *m_file; bool m_file_destroy; + + DECLARE_NO_COPY_CLASS(wxFFileOutputStream) }; -class WXDLLEXPORT wxFFileStream: public wxFFileInputStream, public wxFFileOutputStream { - public: - wxFFileStream(const wxString& fileName); +class WXDLLIMPEXP_BASE wxFFileStream : public wxFFileInputStream, + public wxFFileOutputStream +{ +public: + wxFFileStream(const wxString& fileName); + +private: + DECLARE_NO_COPY_CLASS(wxFFileStream) }; + #endif // wxUSE_STREAMS && wxUSE_FILE