mirror of
https://github.com/muccc/WomoLIN.git
synced 2026-03-13 20:46:47 +01:00
21 lines
336 B
C++
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);
|
|
|
|
};
|
|
|
|
}
|
|
|