home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / UNIX / GNU / gcc-2.7.2.3.1-I / lib / g++-include / Complex.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-12  |  200 b   |  11 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2.  
  3. #ifndef _Complex_h
  4. #define _Complex_h
  5.  
  6. // Use the ANSI complex number template.
  7. #include <complex>
  8. typedef complex<double> Complex;
  9.  
  10. #endif
  11.