Files
WomoLIN/Software/WomoLin/lib/include/protocol.h
2019-12-09 22:15:27 +01:00

21 lines
336 B
C++

#pragma once
#include "icommon.h"
namespace womolin::protocol
{
class Protocol
{
public:
Protocol() = default;
~Protocol() = default;
void getKeyValue(const std::string & input,
std::string & key,
std::string & value);
};
}