Ubuntu12.04.4_lts
2023-08-01 961efe36f62f7eba688d504ec0cdf3e1daa4dd74
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CRC16_H
#define CRC16_H
 
#include <QVector>
 
class CRC16
{
public:
    CRC16();
    static unsigned short CalCRC16(const void *data, const int count);
};
 
#endif // CRC16_H