blob: 3fb96fced90858ed29d537831ee411579e3da640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// SPDX-License-Identifier: BSD-3-Clause
#ifndef INVERTER_TOOLS_P18_CLIENT_H_
#define INVERTER_TOOLS_P18_CLIENT_H_
#include "../voltronic/device.h"
#include "types.h"
#include "response.h"
#include "../protocol/client.h"
#include <memory>
#include <vector>
#include <string>
namespace p18 {
using protocol::BaseClient;
using protocol::BaseResponse;
class Client : public BaseClient {
private:
static std::string packArguments(p18::CommandType commandType, std::vector<std::string>& arguments);
public:
std::shared_ptr<BaseResponse> execute(int commandType, std::vector<std::string>& arguments) override;
};
}
#endif //INVERTER_TOOLS_P18_CLIENT_H_
|