complex
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:0k
源码类别:

STL

开发平台:

Visual C++

  1. // Main header for the -*- C++ -*- complex number classes.
  2. // This file is part of the GNU ANSI C++ Library.
  3. #ifndef __COMPLEX__
  4. #define __COMPLEX__
  5. #include <std/complext.h>
  6. extern "C++" {
  7. #define __STD_COMPLEX
  8. // ANSI complex types
  9. typedef complex<float> float_complex;
  10. typedef complex<double> double_complex;
  11. typedef complex<long double> long_double_complex;
  12. }
  13. #endif