supla-device
Loading...
Searching...
No Matches
security_log_list.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_SECURITY_LOG_LIST_H_
5#define SRC_SUPLA_NETWORK_HTML_SECURITY_LOG_LIST_H_
6
7#include <supla/network/html_element.h>
8
9namespace Supla {
10
11namespace Device {
12class SecurityLogger;
13}; // namespace Device
14
15namespace Html {
16
18 public:
20 virtual ~SecurityLogList();
21 void send(Supla::WebSender* sender) override;
22
23 private:
24 Supla::Device::SecurityLogger *logger = nullptr;
25};
26
27}; // namespace Html
28}; // namespace Supla
29
30
31#endif // SRC_SUPLA_NETWORK_HTML_SECURITY_LOG_LIST_H_
Definition security_logger.h:47
Definition html_element.h:22
Definition security_log_list.h:17
Definition web_sender.h:160