/* * Turbo Vision - Version 2.0 * * Copyright (c) 1994 by Borland International * All Rights Reserved. * Modified by Robert H”hne to be used for RHIDE. * * */ /* ------------------------------------------------------------------------*/ /* */ /* class iopstream */ /* */ /* Base class for reading and writing streamable objects */ /* */ /* ------------------------------------------------------------------------*/ #if defined( Uses_iopstream ) && !defined( __iopstream ) #define __iopstream class iopstream : public ipstream, public opstream { public: iopstream(CLY_streambuf *); ~iopstream(); protected: iopstream(); }; #endif // Uses_iopstream