mirror of
https://github.com/muccc/WomoLIN.git
synced 2026-03-13 20:46:47 +01:00
17 lines
317 B
C++
17 lines
317 B
C++
#pragma once
|
|
|
|
#include "icommon.h"
|
|
|
|
namespace womolin::unit
|
|
{
|
|
class Relay : public womolin::lib::common::interface::IRelay
|
|
{
|
|
public:
|
|
Relay() = default;
|
|
virtual ~Relay() = default;
|
|
|
|
void UpdateUnitSignalSetReset( std::string & key, std::string & value ) override final;
|
|
};
|
|
|
|
}
|