home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional Developers Kit 1992 November / Disc01 / Disc01.mdf / cppbeta / ibmcli / inew.hp_ / INEW.HPP
Encoding:
C/C++ Source or Header  |  1992-10-26  |  2.3 KB  |  51 lines

  1. /* No Document */
  2. /* Ship */
  3. #if !defined(_INEW_)
  4.   #define _INEW_
  5. /***************************************************************/
  6. /* CLASS NAME:      NONE                                       */
  7. /*                                                             */
  8. /* DESCRIPTION  : This file is used to conditionally compile   */
  9. /*         operator new support.                               */
  10. /*                                                             */
  11. /*                                                             */
  12. /* CHANGE ACTIVITY:                                            */
  13. /*   DATE:     INITIAL:        DESCRIPTION                     */
  14. /*                                                             */
  15. /*   070992    RDL        Created                              */
  16. /*                                                             */
  17. /***************************************************************/
  18. /* COPYRIGHT:                                                  */
  19. /*   (C) Copyright IBM Corporation 1992                        */
  20. /*   All Rights Reserved                                       */
  21. /*   Licensed Materials * Property of IBM                      */
  22. /***************************************************************/
  23.  
  24.   /*-----------------------------------------------------------*/
  25.   /* Include Zortech Operator new support.                     */
  26.   /*-----------------------------------------------------------*/
  27.   #if (defined( __ZTC__ ))   
  28.      #include <new.hpp>
  29.  
  30.   /*-----------------------------------------------------------*/
  31.   /* Include RS/6000 Operator New support.                     */
  32.   /*-----------------------------------------------------------*/
  33.   #elif (defined( __IBMR2__ )) 
  34.      #include <new.h>
  35.  
  36.   /*-----------------------------------------------------------*/
  37.   /* Include Glockenspiel Operator new support.                */
  38.   /*-----------------------------------------------------------*/
  39.   #elif (defined( __GLOCKENSPIEL)) 
  40.      #include <new.hxx>
  41.  
  42.   /*-----------------------------------------------------------*/
  43.   /* Include Default Operator New support (IBM C++).           */
  44.   /*-----------------------------------------------------------*/
  45.   #else
  46.      #include <new.h>
  47.   #endif
  48.  
  49. #endif /* _NEW_ */
  50.  
  51.