home *** CD-ROM | disk | FTP | other *** search
- /* No Document */
- /* Ship */
- #if !defined(_ISTREAM_)
- #define _ISTREAM_
- /***************************************************************/
- /* CLASS NAME: NONE */
- /* */
- /* DESCRIPTION : This file is used to conditionally compile */
- /* stream support. */
- /* */
- /* */
- /* CHANGE ACTIVITY: */
- /* DATE: INITIAL: DESCRIPTION */
- /* */
- /* 070992 RDL Created */
- /* */
- /***************************************************************/
- /* COPYRIGHT: */
- /* (C) Copyright IBM Corporation 1992 */
- /* All Rights Reserved */
- /* Licensed Materials * Property of IBM */
- /***************************************************************/
-
- /*-----------------------------------------------------------*/
- /* Include Zortech Stream support. */
- /*-----------------------------------------------------------*/
- #if (defined( __ZTC__ ))
- #include <iostream.hpp>
-
- /*-----------------------------------------------------------*/
- /* Include RS/6000 Stream support. */
- /*-----------------------------------------------------------*/
- #elif (defined( __IBMR2__ ))
- #include <stream.h>
-
- /*-----------------------------------------------------------*/
- /* Include Glockenspiel Stream support. */
- /*-----------------------------------------------------------*/
- #elif (defined( __GLOCKENSPIEL))
- #include <iostream.hxx>
-
- /*-----------------------------------------------------------*/
- /* Include Default Stream support (IBM C++). */
- /*-----------------------------------------------------------*/
- #else
- #include <stream.h>
- #endif
-
- #endif /* _ISTREAM_ */