home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / iso646.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-20  |  1.1 KB  |  28 lines

  1. /********************************************************************/
  2. /*  <iso646.h> header file                                          */
  3. /*                                                                  */
  4. /*  VisualAge for C++ for Windows, Version 3.5                      */
  5. /*    Licensed Material - Property of IBM                           */
  6. /*                                                                  */
  7. /*  5801-ARR and Other Materials                                    */
  8. /*                                                                  */
  9. /*  (c) Copyright IBM Corp 1996. All rights reserved.               */
  10. /*                                                                  */
  11. /********************************************************************/
  12.  
  13. #ifndef __iso646_h
  14.    #define __iso646_h
  15.  
  16.    #define  and     &&
  17.    #define  and_eq  &=
  18.    #define  bitand  &
  19.    #define  bitor   |
  20.    #define  compl   ~
  21.    #define  not     !
  22.    #define  not_eq  !=
  23.    #define  or      ||
  24.    #define  or_eq   |=
  25.    #define  xor     ^
  26.    #define  xor_eq  ^=
  27. #endif
  28.