mirror of
https://github.com/muccc/WomoLIN.git
synced 2026-03-10 19:16:46 +01:00
16 lines
253 B
C++
16 lines
253 B
C++
#include "include/signal.h"
|
|
|
|
namespace womolin::signal
|
|
{
|
|
|
|
|
|
|
|
bool SignalOnOff::UpdateUnit( std::string & key, std::string & value )
|
|
{
|
|
for (const auto & unit : units){
|
|
unit->UpdateUnitSignalOnOff(key, value);
|
|
}
|
|
return false;
|
|
}
|
|
}
|