aboutsummaryrefslogtreecommitdiff
path: root/src/protocol_18/input.h
blob: 939497e471eaba2ddb5471cf2be831251c5de580 (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_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