mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-07 18:38:36 +02:00
21 lines
533 B
C++
21 lines
533 B
C++
#ifndef __VALUECAN4_1_2_SETTINGS_H_
|
|
#define __VALUECAN4_1_2_SETTINGS_H_
|
|
|
|
#include "icsneo/device/idevicesettings.h"
|
|
#include "icsneo/device/tree/valuecan4/settings/valuecan4settings.h"
|
|
|
|
#ifdef __cplusplus
|
|
|
|
namespace icsneo {
|
|
|
|
class ValueCAN4_1_2Settings : public IDeviceSettings {
|
|
public:
|
|
ValueCAN4_1_2Settings(Device* device) : IDeviceSettings(device, sizeof(valuecan4_1_2_settings_t)) {}
|
|
// We do not override getCANSettingsFor or getCANFDSettingsFor here because they will be device specific
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif |