[filesystem][SpecialProtocol] Removed assert from GetPath
[xbmc.git] / xbmc / windows / GUIWindowSplash.h
blobf5f54ee6a4cde170f6e6e49743a71996d1cee357
1 /*
2 * Copyright (C) 2015-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include "guilib/GUIWindow.h"
13 #include <memory>
15 class CGUITextLayout;
16 class CGUIImage;
18 class CGUIWindowSplash : public CGUIWindow
20 public:
21 CGUIWindowSplash(void);
22 ~CGUIWindowSplash(void) override;
23 bool OnAction(const CAction& action) override { return false; }
24 void Render() override;
25 protected:
26 void OnInitWindow() override;
27 private:
28 std::unique_ptr<CGUIImage> m_image;