kodi
PlatformWebOS.h
1 /*
2 * Copyright (C) 2023 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 "PlatformLinux.h"
12 
14 {
15 public:
16  bool InitStageOne() override;
17  bool InitStageTwo() override;
18  static CPlatform* CreateInstance();
19 
20 protected:
21  void RegisterPowerManagement() override;
22 };
Definition: PlatformWebOS.h:13
Definition: PlatformLinux.h:16
bool InitStageOne() override
Called at an early stage of application startup.
Definition: PlatformWebOS.cpp:23
Class for the Platform object.
Definition: Platform.h:25
bool InitStageTwo() override
Called at a middle stage of application startup.
Definition: PlatformWebOS.cpp:40