hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 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>
5 class CRCInterface
6 {
7 public:
8  virtual T calc(const char *data, unsigned int size) = 0;
9  virtual ~CRCInterface(){}
10 };
11 #endif