summaryrefslogtreecommitdiffstats
path: root/xbmc/addons/UISoundsResource.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/addons/UISoundsResource.h')
-rw-r--r--xbmc/addons/UISoundsResource.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/xbmc/addons/UISoundsResource.h b/xbmc/addons/UISoundsResource.h
new file mode 100644
index 0000000..0a07f11
--- /dev/null
+++ b/xbmc/addons/UISoundsResource.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (C) 2015-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#pragma once
+
+#include "addons/Resource.h"
+
+namespace ADDON
+{
+
+class CUISoundsResource : public CResource
+{
+public:
+ explicit CUISoundsResource(const AddonInfoPtr& addonInfo);
+
+ bool IsAllowed(const std::string &file) const override;
+ bool IsInUse() const override;
+ void OnPostInstall(bool update, bool modal) override;
+};
+
+}