home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / libg_ / libgpp / !libgpp / h / Complex < prev    next >
Encoding:
Text File  |  1995-08-21  |  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.