kodi
PlatformFreebsd.h
1 /*
2  * Copyright (C) 2016-2018 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/linux/OptionalsReg.h"
12 #include "platform/posix/PlatformPosix.h"
13 
14 #include <memory>
15 
17 {
18 public:
19  CPlatformFreebsd() = default;
20  ~CPlatformFreebsd() override = default;
21 
22  bool InitStageOne() override;
23 
24 private:
25  std::unique_ptr<OPTIONALS::CLircContainer, OPTIONALS::delete_CLircContainer> m_lirc;
26 };
Definition: PlatformPosix.h:15
bool InitStageOne() override
Called at an early stage of application startup.
Definition: PlatformFreebsd.cpp:51
Definition: PlatformFreebsd.h:16