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 {
8 private:
9  int len_;
10 public:
11  HexDecodeConvertor(int len):len_(len)
12  {
13  };
14  virtual EID_STRING convert(const void *original)
15  {
16  return TEXT("");
17  };
18  virtual void *convert(const void *original, int *len_return);
19 };
20 
21 #endif
Definition: hexdecode.h:6
Definition: convworker.h:10