compile wxFileXXXStream without wxFFileXXXStream

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32115 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2005-02-17 10:42:22 +00:00
parent 2d1659cf32
commit 859906241d
2 changed files with 20 additions and 4 deletions

View File

@@ -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
// ----------------------------------------------------------------------------
@@ -96,6 +98,10 @@ private:
DECLARE_NO_COPY_CLASS(wxFileStream)
};
#endif //wxUSE_FILE
#if wxUSE_FFILE
// ----------------------------------------------------------------------------
// wxFFileStream using wxFFile
// ----------------------------------------------------------------------------
@@ -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__