supla-device
Loading...
Searching...
No Matches
hide_show_container.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_HIDE_SHOW_CONTAINER_H_
5#define SRC_SUPLA_NETWORK_HTML_HIDE_SHOW_CONTAINER_H_
6
7#include <supla/network/html_element.h>
8
10
11namespace Supla {
12
13namespace Html {
14
16 public:
17 explicit HideShowContainerBegin(const char *name);
19 void send(Supla::WebSender* sender) override;
20
21 protected:
22 char *name = nullptr;
23};
24
26 public:
27 void send(Supla::WebSender* sender) override;
28};
29
30
31}; // namespace Html
32}; // namespace Supla
33
34
35#endif // SRC_SUPLA_NETWORK_HTML_HIDE_SHOW_CONTAINER_H_
Definition SuplaDevice.h:167
Definition html_element.h:22
Definition hide_show_container.h:15
Definition hide_show_container.h:25
Definition web_sender.h:160