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.

PublisherPowercenter.h 280B

12345678910111213141516
  1. #pragma once
  2. #include "PublisherInterface.h"
  3. #include "ModbusDataPOC.h"
  4. #include <memory>
  5. class PublisherPowercenter :
  6. public PublisherInterface
  7. {
  8. private:
  9. public:
  10. PublisherPowercenter();
  11. virtual ~PublisherPowercenter();
  12. std::string getName()const override;
  13. };