INFM HIL Interface
Interface between Artery simulation and DuTs
CANConnectorCodecFactory.h
1
27#ifndef SIM_TO_DUT_INTERFACE_CANCONNECTORCODECFACTORY_H
28#define SIM_TO_DUT_INTERFACE_CANCONNECTORCODECFACTORY_H
29
30// Project includes
31#include "CANConnectorCodec.h"
32#include "InterfaceLogger.h"
33
34// Codec includes.
35#include "BmwCodec.h"
36
40#define CODEC_NAME_BMW "BmwCodec"
41
43
50
51 public:
52
60 static CANConnectorCodec *createCodec(const std::string &codecName);
61 };
62
63}
64
65#endif //SIM_TO_DUT_INTERFACE_CANCONNECTORCODECFACTORY_H
Creates the requested CAN codec.
Definition: CANConnectorCodecFactory.h:49
static CANConnectorCodec * createCodec(const std::string &codecName)
Definition: CANConnectorCodecFactory.cpp:32
The CAN Connector Codec defines the interface that each codec implementation must fulfill.
Definition: CANConnectorCodec.h:44
Definition: CANConnector.cpp:29