supla-device
Loading...
Searching...
No Matches
div.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_DIV_H_
5#define SRC_SUPLA_NETWORK_HTML_DIV_H_
6
7#include <supla/network/html_element.h>
8
10
11namespace Supla {
12
13namespace Html {
14
22class DivBegin : public HtmlElement {
23 public:
24 explicit DivBegin(const char *className = nullptr,
25 const char *idName = nullptr);
26 ~DivBegin();
27 void send(Supla::WebSender* sender) override;
28
29 protected:
30 char *className = nullptr;
31 char *idName = nullptr;
32};
33
40class DivEnd : public HtmlElement {
41 public:
42 void send(Supla::WebSender* sender) override;
43};
44
45
46}; // namespace Html
47}; // namespace Supla
48
49
50#endif // SRC_SUPLA_NETWORK_HTML_DIV_H_
Definition SuplaDevice.h:167
Definition html_element.h:22
Definition div.h:22
Definition div.h:40
Definition web_sender.h:160