home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / lib / g++-include / complex < prev    next >
Text File  |  1994-12-22  |  488b  |  23 lines

  1. // Main header for the -*- C++ -*- complex number classes.
  2. // This file is part of the GNU ANSI C++ Library.
  3.  
  4. #ifndef __COMPLEX__
  5. #define __COMPLEX__
  6.  
  7. #include <complext.hI>
  8.  
  9. #define __STD_COMPLEX
  10.  
  11. // ANSI complex types
  12. typedef __complex<float> float_complex;
  13. typedef __complex<double> double_complex;
  14. typedef __complex<long double> long_double_complex;
  15.  
  16. // For backward compatibility
  17. #ifndef __STRICT_ANSI__
  18. typedef double_complex Complex;
  19. typedef double_complex complex;
  20. #endif
  21.  
  22. #endif
  23.