Digitalisierte Elektroverteilung zur permanenten Verbraucherüberwachung
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ParameterUInt32.h 556B

1234567891011121314
  1. #pragma once
  2. #include "ParameterInterface.h"
  3. class ParameterUInt32 : public ParameterInterface<uint32_t>
  4. {
  5. private:
  6. uint32_t param = 0;
  7. public:
  8. ParameterUInt32(const ModbusRegister description, uint16_t address, Access access) : ParameterInterface(description, address, access) {};
  9. ParameterUInt32(const ModbusRegister description, const unsigned short address, const Access access, const Category cat) : ParameterInterface(description, address, access, cat) {};
  10. virtual ~ParameterUInt32(){}
  11. uint8_t getSize() const override { return 32; }
  12. };