From 860b3c0ccfb2756b8ed77523048952011b74a212 Mon Sep 17 00:00:00 2001 From: Christian Gromm Date: Tue, 21 Jun 2016 14:14:04 +0200 Subject: src: can-lin: initial source import This patch adds the sources needed for the HVAC and iDrive applications. Change-Id: I53148a5d11c34787dd11295939bbaf8702c64dcb Signed-off-by: Christian Gromm --- K2LABI/Common/FlowDecoder/IFlowDecoder.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 K2LABI/Common/FlowDecoder/IFlowDecoder.h (limited to 'K2LABI/Common/FlowDecoder/IFlowDecoder.h') 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__ -- cgit 1.2.3-korg