supla-device
Loading...
Searching...
No Matches
select_cmd_input_parameter.h
1// SPDX-FileCopyrightText: AC SOFTWARE SP. Z O.O.
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#ifndef SRC_SUPLA_NETWORK_HTML_SELECT_CMD_INPUT_PARAMETER_H_
5#define SRC_SUPLA_NETWORK_HTML_SELECT_CMD_INPUT_PARAMETER_H_
6
7#include <supla/network/html/text_cmd_input_parameter.h>
8
9namespace Supla {
10
11namespace Html {
12
14 public:
15 SelectCmdInputParameter(const char *paramTag, const char *paramLabel);
17 void send(Supla::WebSender* sender) override;
18};
19
20}; // namespace Html
21}; // namespace Supla
22
23
24#endif // SRC_SUPLA_NETWORK_HTML_SELECT_CMD_INPUT_PARAMETER_H_
Definition select_cmd_input_parameter.h:13
Definition text_cmd_input_parameter.h:23
Definition web_sender.h:160