Files
WomoLIN/Software/WomoLin/lib/signal.cpp
2019-12-09 21:24:14 +01:00

13 lines
239 B
C++

#include "include/signal.h"
namespace womolin::signal
{
void SignalSetReset::UpdateUnit( std::string & key, std::string & value )
{
for (const auto & unit : units){
unit->UpdateUnitSignalSetReset(key, value);
}
}
}