supla-device
Loading...
Searching...
No Matches
h3_tag.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_H3_TAG_H_
5#define SRC_SUPLA_NETWORK_HTML_H3_TAG_H_
6
7#include <supla/network/html_element.h>
8
9namespace Supla {
10
11namespace Html {
12
19class H3Tag : public HtmlElement {
20 public:
21 explicit H3Tag(const char *text);
22 virtual ~H3Tag();
23 void send(Supla::WebSender* sender) override;
24
25 protected:
26 char *text = nullptr;
27};
28
29}; // namespace Html
30}; // namespace Supla
31
32#endif // SRC_SUPLA_NETWORK_HTML_H3_TAG_H_
Definition html_element.h:22
Definition h3_tag.h:19
Definition web_sender.h:160