#ifndef IOMANIP_INCLUDED #define IOMANIP_INCLUDED // ---------------------------------------------------------------------- // // iomanip // // 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; removed using statements; indented // 13-Feb-1998 WEB Included ZMtime.h to permit POSIX extensions using // SGI's incredible headers // 23-Feb-1998 WEB Included ctime instead of ZMtime.h // 20-May-1999 WEB Reimplementation of ZMtimer permitted removal of // dependence on // 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_iomanip #include // grab class #else #include // grab class #endif // ZM_STD_iomanip #endif // ISOCXX__ISOCXX // ---------------------------------------------------------------------- #endif // IOMANIP_INCLUDED