kodi
UISoundsResource.h
1 /*
2  * Copyright (C) 2015-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 "addons/Resource.h"
12 
13 namespace ADDON
14 {
15 
17 {
18 public:
19  explicit CUISoundsResource(const AddonInfoPtr& addonInfo);
20 
21  bool IsAllowed(const std::string &file) const override;
22  bool IsInUse() const override;
23  void OnPostInstall(bool update, bool modal) override;
24 };
25 
26 }
Definition: Resource.h:19
Definition: Addon.cpp:39
Definition: UISoundsResource.h:16