kodi
AndroidInterfaceForCLog.h
1 /*
2  * Copyright (C) 2020 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "platform/posix/utils/PosixInterfaceForCLog.h"
12 
14 {
15 public:
16  CAndroidInterfaceForCLog() = default;
17  ~CAndroidInterfaceForCLog() override = default;
18 
19  // specialization of CPosixInterfaceForCLog
20  void AddSinks(
21  std::shared_ptr<spdlog::sinks::dist_sink<std::mutex>> distributionSink) const override;
22 };
Definition: PosixInterfaceForCLog.h:13
Definition: AndroidInterfaceForCLog.h:13
Definition: IPlatformLog.h:26