HCE project C++ developers source code library  1.1.1
HCE project developer library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
CRC.h
Go to the documentation of this file.
1 #ifndef CRCINTERFACE_H
2 #define CRCINTERFACE_H
3 #include <sys/types.h>
4 template <class T>
6 {
7 public:
8  virtual T calc(const char *data, unsigned int size) = 0;
9  virtual ~CRCInterface(){}
10 };
11 #endif