diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-06-07 01:40:32 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-12-02 04:05:15 +0300 |
commit | 3aed59276c2b7275603f6da18377b77718948667 (patch) | |
tree | 86816d82ab02b6e4761175d599f5749490706792 /src/protocol_18/input.h | |
parent | d86ca1e596b094cba101e0e3e6c8cdb71f8116e9 (diff) |
wipp17
Diffstat (limited to 'src/protocol_18/input.h')
-rw-r--r-- | src/protocol_18/input.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/protocol_18/input.h b/src/protocol_18/input.h new file mode 100644 index 0000000..939497e --- /dev/null +++ b/src/protocol_18/input.h @@ -0,0 +1,21 @@ +// SPDX-License-Identifier: BSD-3-Clause + +#ifndef INVERTER_TOOLS_P18_INPUT_H +#define INVERTER_TOOLS_P18_INPUT_H + +#include <map> +#include <string> +#include <vector> + +#include "../protocol/input.h" +#include "types.h" + +namespace p18 { + +extern const std::map<std::string, CommandType> client_commands; + +CommandType validate_input(std::string& command, std::vector<std::string>& arguments, void* input); + +} + +#endif //INVERTER_TOOLS_P18_INPUT_H |