]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/fstream.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: File stream classes
4 // Author: Guilhem Lavaux
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_WXFSTREAM_H__
13 #define _WX_WXFSTREAM_H__
16 #pragma interface "fstream.h"
19 #include <wx/object.h>
20 #include <wx/string.h>
21 #include <wx/stream.h>
24 class wxFileInputStream
: public wxInputStream
{
26 wxFileInputStream(const wxString
& ifileName
);
27 wxFileInputStream(wxFile
& file
);
28 wxFileInputStream(int fd
);
29 virtual ~wxFileInputStream();
33 bool Ok() const { return m_file
->IsOpened(); }
38 size_t OnSysRead(void *buffer
, size_t size
);
39 off_t
OnSysSeek(off_t pos
, wxSeekMode mode
);
40 off_t
OnSysTell() const;
47 class wxFileOutputStream
: public wxOutputStream
{
49 wxFileOutputStream(const wxString
& fileName
);
50 wxFileOutputStream(wxFile
& file
);
51 wxFileOutputStream(int fd
);
52 virtual ~wxFileOutputStream();
54 // To solve an ambiguity on GCC
55 inline wxOutputStream
& Write(const void *buffer
, size_t size
)
56 { return wxOutputStream::Write(buffer
, size
); }
60 bool Ok() const { return m_file
->IsOpened(); }
65 size_t OnSysWrite(const void *buffer
, size_t size
);
66 off_t
OnSysSeek(off_t pos
, wxSeekMode mode
);
67 off_t
OnSysTell() const;