complex_io.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:0k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  file = complex_io.h
  3. //
  4. #ifndef _COMPLEX_IO_H_
  5. #define _COMPLEX_IO_H_ 
  6. #include <fstream>
  7. #include <complex>
  8. using std::complex;
  9. using namespace std;
  10. //
  11. fstream& operator<<(fstream&, const complex<float>&);
  12. ostream& operator<<(ostream&, const complex<double>&);
  13. istream& operator>>(istream&, complex<float>&);
  14. istream& operator>>(istream&, complex<double>&);
  15. #endif // _COMPLEX_IO_H_