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

3G开发

开发平台:

Visual C++

  1. //
  2. // file = typedefs.h
  3. //
  4. #ifndef _TYPEDEFS_H_
  5. #define _TYPEDEFS_H_ 
  6. #include <complex>
  7. typedef unsigned char tribit_t;
  8. typedef unsigned char dibit_t;
  9. typedef unsigned int byte_t;
  10. typedef unsigned int bit_t;
  11. typedef std::complex<float> f_complex_t;
  12. typedef std::complex<double> d_complex_t;
  13. #endif