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

13 lines
222 B
C++

#include "include/unit.h"
#include <iostream>
namespace womolin::unit
{
void Relay::UpdateUnitSignalSetReset( std::string & key, std::string & value )
{
std::cout << key << ":" << value << std::endl;
}
}