eid-viewer
eid-viewer library
hexdecode.h
1 #ifndef EID_VWR_HEXDECODE_H
2 #define EID_VWR_HEXDECODE_H
3 
4 #include "convworker.h"
5 
7 private:
8  int len_;
9 public:
10  HexDecodeConvertor(int len) : len_(len) {};
11  virtual EID_STRING convert(const void* original) { return TEXT(""); };
12  virtual void* convert(const void* original, int* len_return);
13 };
14 
15 #endif
Definition: hexdecode.h:6
Definition: convworker.h:10