mirror of
https://github.com/muccc/WomoLIN.git
synced 2026-03-11 03:26:48 +01:00
22 lines
366 B
C++
22 lines
366 B
C++
#include "include/unit.h"
|
|
|
|
namespace womolin::unit
|
|
{
|
|
|
|
bool UpdateUnitSignalSetReset( std::string & key, std::string & value )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool UpdateUnitSignalOnOff( std::string & key, std::string & value )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool UpdateUnitSignalCloseOpen( std::string & key, std::string & value )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
}
|