X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/062c4861718a681a27384d6a2313fc26cda3b3e4..73864f4018a754c9e3f953c6ce33a74785541ad0:/src/common/stream.cpp diff --git a/src/common/stream.cpp b/src/common/stream.cpp index d5954d71d8..cc38a5022b 100644 --- a/src/common/stream.cpp +++ b/src/common/stream.cpp @@ -15,15 +15,22 @@ // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" + +#ifdef __BORLANDC__ + #pragma hdrstop +#endif + +#ifndef WX_PRECOMP + #include "wx/defs.h" +#endif + +#if wxUSE_STREAMS + #include #include #include #include -#ifdef __BORLANDC__ -#pragma hdrstop -#endif - #define BUF_TEMP_SIZE 10000 // ---------------------------------------------------------------------------- @@ -855,3 +862,6 @@ wxOutputStream& wxEndL(wxOutputStream& stream) return stream.Write("\n", 1); #endif } + +#endif + // wxUSE_STREAMS