mirror of
https://github.com/muccc/WomoLIN.git
synced 2026-03-11 11:36:48 +01:00
21 lines
411 B
C++
21 lines
411 B
C++
#pragma once
|
|
|
|
#include "iprotocol.h"
|
|
|
|
namespace womolin::protocol
|
|
{
|
|
class Protocol : public womolin::interface::IProtocol
|
|
{
|
|
public:
|
|
Protocol() = default;
|
|
virtual ~Protocol() = default;
|
|
|
|
bool getKeyValue(const std::string & input,
|
|
std::string & key,
|
|
std::string & value) override final;
|
|
|
|
};
|
|
|
|
}
|
|
|