/////////////////////////////////////////////////////////////////////////////
-// Name: fstream.cpp
+// Name: src/common/fstream.cpp
// Purpose: "File stream" classes
// Author: Julian Smart
// Modified by:
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "wfstream.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
- #pragma hdrstop
+ #pragma hdrstop
#endif
#if wxUSE_STREAMS
-#include <stdio.h>
-#include "wx/stream.h"
#include "wx/wfstream.h"
+#ifndef WX_PRECOMP
+ #include "wx/stream.h"
+#endif
+
+#include <stdio.h>
+
#if wxUSE_FILE
// ----------------------------------------------------------------------------
{
m_file = new wxFFile(fileName, mode);
m_file_destroy = true;
+
+ if (!m_file->IsOpened())
+ m_lasterror = wxSTREAM_WRITE_ERROR;
}
wxFFileInputStream::wxFFileInputStream()
#endif //wxUSE_FFILE
#endif // wxUSE_STREAMS
-