Files
WomoLIN/Software/WomoLin/common/protocol.cpp
2019-12-07 22:54:57 +01:00

13 lines
265 B
C++

#include "include/protocol.h"
namespace womolin::protocol
{
bool Protocol::getKeyValue(const std::string & input,
std::string & key,
std::string & value)
{
return false;
}
}