summaryrefslogtreecommitdiffstats
path: root/xbmc/utils/PlayerUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/utils/PlayerUtils.h')
-rw-r--r--xbmc/utils/PlayerUtils.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/xbmc/utils/PlayerUtils.h b/xbmc/utils/PlayerUtils.h
new file mode 100644
index 0000000..f62d891
--- /dev/null
+++ b/xbmc/utils/PlayerUtils.h
@@ -0,0 +1,17 @@
+/*
+ * Copyright (C) 2022 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
+
+class CFileItem;
+
+class CPlayerUtils
+{
+public:
+ static bool IsItemPlayable(const CFileItem& item);
+};