diff options
Diffstat (limited to 'K2LABI/Common/FlowDecoder/IFlowDecoder.h')
-rw-r--r-- | K2LABI/Common/FlowDecoder/IFlowDecoder.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/K2LABI/Common/FlowDecoder/IFlowDecoder.h b/K2LABI/Common/FlowDecoder/IFlowDecoder.h new file mode 100644 index 0000000..16dae7c --- /dev/null +++ b/K2LABI/Common/FlowDecoder/IFlowDecoder.h @@ -0,0 +1,16 @@ +#ifndef __IFLOWDECODER_H__ +#define __IFLOWDECODER_H__ + +#include "k2l-type.h" + + +class IFlowDecoder +{ +public: + IFlowDecoder() {} + virtual ~IFlowDecoder() {} + + virtual void DecodeFlow(BYTE* pBuffer, unsigned long nLen) = 0; +}; + +#endif // __IFLOWDECODER_H__ |