hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
FakeHCRCPlugin.hpp
Go to the documentation of this file.
1 
6 #ifndef _FAKE_HCRC_HPP
7 #define _FAKE_HCRC_HPP
8 
9 
13 #include "TPlugin.hpp"
14 #include "LCoreData.hpp"
15 #include "CRC64.h"
16 
17 
18 namespace HCE
19 {
20 
21 namespace component
22 {
23 
24 class FakeHCRCPlugin : public TPlugin
25 {
26 public:
28  virtual ~FakeHCRCPlugin();
29 public:
30  virtual void process(LCoreData&);
31 private:
32  CRC64 _hCrc64;
33 };
34 
35 
36 } /* namespace component */
37 
38 } /* namespace HCE */
39 
40 
41 #endif