]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/log.h
Added some tentative wxMotif clipboard code; did some file formatting
[wxWidgets.git] / include / wx / log.h
index 32c9b1f0e8905acaa2a204c32f8dd3737f4b3aee..ec849d8df93ab4708310a2825614f13028795649 100644 (file)
@@ -180,6 +180,7 @@ private:
   FILE *m_fp;
 };
 
+#if wxUSE_STD_IOSTREAM
 // log everything to an "ostream", cerr by default
 class WXDLLEXPORT wxLogStream : public wxLog
 {
@@ -194,9 +195,11 @@ protected:
   // @@ using ptr here to avoid including <iostream.h> from this file
   ostream *m_ostr;
 };
+#endif
 
 #ifndef wxUSE_NOGUI
 
+#if wxUSE_STD_IOSTREAM
 // log everything to a text window (GUI only of course)
 class WXDLLEXPORT wxLogTextCtrl : public wxLogStream
 {
@@ -205,6 +208,7 @@ public:
   wxLogTextCtrl(wxTextCtrl *pTextCtrl);
  ~wxLogTextCtrl();
 };
+#endif
 
 // ----------------------------------------------------------------------------
 // GUI log target, the default one for wxWindows programs