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.

ModbusDataPOC.h 331B

1234567891011121314151617181920
  1. #pragma once
  2. #include <vector>
  3. #include <string>
  4. #include <memory>
  5. #include <optional>
  6. #include <any>
  7. #include <map>
  8. #include "ModbusDataInterface.h"
  9. class ModbusDataPOC : public ModbusDataInterface
  10. {
  11. private:
  12. public:
  13. ModbusDataPOC(const unsigned int id);
  14. static std::string getStatusMessage(unsigned short statusID);
  15. };