#ifndef IOSFWD_INCLUDED #define IOSFWD_INCLUDED // ---------------------------------------------------------------------- // // iosfwd // // History: // 28-Oct-1997 WEB Initial draft, adapted from code in "Simultaneous // Support for KAI C++ and GNU C++ in Source Code" by Rob Kennedy, // revised 23-Sep-1997 // 04-Nov-1997 WEB Renamed; added ZM_IOSTREAM code guard; indented // 14-Feb-2000 WEB Incorporated ISOcxx compatibility // // ---------------------------------------------------------------------- // --- ISOcxx compatibility: #if defined ISOCXX__ISOCXX #ifndef ZMENVIRONMENT_H #include "ZMutility/ZMenvironment.h" #endif // ZMENVIRONMENT_H #include // --- original code: #else // ! defined ISOCXX__ISOCXX #ifndef ZMENVIRONMENT_H #include "ZMutility/ZMenvironment.h" #endif // ZMENVIRONMENT_H #ifdef ZM_STD_iosfwd #include // grab class declarations #else #ifndef ZM_IOSTREAM #define ZM_IOSTREAM #include // grab class #endif // ZM_IOSTREAM #endif // ZM_STD_iosfwd #endif // ISOCXX__ISOCXX // ---------------------------------------------------------------------- #endif // IOSFWD_INCLUDED