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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = bitenctab.h
  3. //
  4. #ifndef _BITENCTAB_H_
  5. #define _BITENCTAB_H_
  6. class BitEncodingTable
  7. {
  8. public:
  9.   BitEncodingTable( int k, int poly);
  10.   ~BitEncodingTable();
  11.   int GetOutput(int n);
  12. private:
  13.   int *Out_Table;
  14.   int Table_Len;
  15. };
  16. #endif