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