21 lines
585 B
C++
21 lines
585 B
C++
#ifndef __VALUECAN4_4_2EL_SETTINGS_H_
|
|
#define __VALUECAN4_4_2EL_SETTINGS_H_
|
|
|
|
#include "icsneo/device/idevicesettings.h"
|
|
#include "icsneo/device/tree/valuecan4/settings/valuecan4settings.h"
|
|
|
|
#ifdef __cplusplus
|
|
|
|
namespace icsneo {
|
|
|
|
class ValueCAN4_4_2ELSettings : public IDeviceSettings {
|
|
public:
|
|
ValueCAN4_4_2ELSettings(std::shared_ptr<Communication> com) : IDeviceSettings(com, sizeof(valuecan4_4_2el_settings_t)) {}
|
|
// We do not override getCANSettingsFor, getCANFDSettingsFor, or getEthernetSettingsFor here because they will be device specific
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif |