home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / cecko / install / devcpp4920.exe / include / g++-3 / complex < prev    next >
Encoding:
Text File  |  2001-08-27  |  394 b   |  19 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 <std/complext.h>
  8.  
  9. extern "C++" {
  10. #define __STD_COMPLEX
  11.  
  12. // ANSI complex types
  13. typedef complex<float> float_complex;
  14. typedef complex<double> double_complex;
  15. typedef complex<long double> long_double_complex;
  16. }
  17.  
  18. #endif
  19.