// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
+#ifdef __GNUG__
+ #pragma interface "textctrlbase.h"
+#endif
#include "wx/defs.h"
#include "wx/control.h" // the base class
// --------
wxTextCtrlBase();
+ ~wxTextCtrlBase();
// accessors
// ---------
bool Modified() const { return IsModified(); }
#endif
-private:
+protected:
// the name of the last file loaded with LoadFile() which will be used by
// SaveFile() by default
wxString m_filename;
+
+private:
+#ifndef NO_TEXT_WINDOW_STREAM
+#if !wxUSE_IOSTREAMH
+ char *m_streambuf;
+#endif
+#endif
};
// ----------------------------------------------------------------------------