home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1993 Marc Stern (internet: stern@mble.philips.be) */
-
- #if !defined(__TOUTERR_H_) && defined(Uses_TOutErr)
- #define __TOUTERR_H_
-
- #include <iostream.h>
-
-
- class TRect;
-
-
- class TOutErr : public TApplication
- {
- ostream_withassign _old_cout;
- ostream_withassign _old_cerr;
- ostream_withassign _old_clog;
-
- public:
-
- TOutErr( TRect& outbounds, ushort outbufsize, TRect& errbounds, ushort errbufsize );
-
- ~TOutErr();
-
- };
-
- #endif