return m_file->Tell();
}
+bool wxFileInputStream::IsOk() const
+{
+ return (wxStreamBase::IsOk() && m_file->IsOpened());
+}
+
// ----------------------------------------------------------------------------
// wxFileOutputStream
// ----------------------------------------------------------------------------
return m_file->Length();
}
+bool wxFileOutputStream::IsOk() const
+{
+ return (wxStreamBase::IsOk() && m_file->IsOpened());
+}
+
// ----------------------------------------------------------------------------
// wxTempFileOutputStream
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
wxFFileInputStream::wxFFileInputStream(const wxString& fileName,
- const wxChar *mode)
+ const wxString& mode)
: wxInputStream()
{
m_file = new wxFFile(fileName, mode);
return m_file->Tell();
}
+bool wxFFileInputStream::IsOk() const
+{
+ return (wxStreamBase::IsOk() && m_file->IsOpened());
+}
+
// ----------------------------------------------------------------------------
// wxFFileOutputStream
// ----------------------------------------------------------------------------
wxFFileOutputStream::wxFFileOutputStream(const wxString& fileName,
- const wxChar *mode)
+ const wxString& mode)
{
m_file = new wxFFile(fileName, mode);
m_file_destroy = true;
return m_file->Length();
}
+bool wxFFileOutputStream::IsOk() const
+{
+ return (wxStreamBase::IsOk() && m_file->IsOpened());
+}
+
// ----------------------------------------------------------------------------
// wxFFileStream
// ----------------------------------------------------------------------------