home *** CD-ROM | disk | FTP | other *** search
- /* No Document */
- /* Ship */
- #if !defined(_INEW_)
- #define _INEW_
- /***************************************************************/
- /* CLASS NAME: NONE */
- /* */
- /* DESCRIPTION : This file is used to conditionally compile */
- /* operator new 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 Operator new support. */
- /*-----------------------------------------------------------*/
- #if (defined( __ZTC__ ))
- #include <new.hpp>
-
- /*-----------------------------------------------------------*/
- /* Include RS/6000 Operator New support. */
- /*-----------------------------------------------------------*/
- #elif (defined( __IBMR2__ ))
- #include <new.h>
-
- /*-----------------------------------------------------------*/
- /* Include Glockenspiel Operator new support. */
- /*-----------------------------------------------------------*/
- #elif (defined( __GLOCKENSPIEL))
- #include <new.hxx>
-
- /*-----------------------------------------------------------*/
- /* Include Default Operator New support (IBM C++). */
- /*-----------------------------------------------------------*/
- #else
- #include <new.h>
- #endif
-
- #endif /* _NEW_ */
-