aboutsummaryrefslogtreecommitdiff
path: root/src/protocol_17/input.h
blob: 5ac64fe9e8610b1a9627052f25f2c24628426ab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: BSD-3-Clause

#ifndef INVERTER_TOOLS_P17_INPUT_H
#define INVERTER_TOOLS_P17_INPUT_H

#include <map>
#include <string>
#include <vector>

#include "../protocol/input.h"
#include "types.h"

namespace p17 {

extern const std::map<std::string, p17::CommandType> client_commands;

CommandType validate_input(std::string& command, std::vector<std::string>& arguments, void* input);

}

#endif //INVERTER_TOOLS_P17_INPUT_H