[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / playlists / PlayListFileItemClassify.h
blobff3a6203be7bf4a61349f353047202ef0654a3b5
1 /*
2 * Copyright (C) 2005-2024 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 class CFileItem;
13 namespace KODI::PLAYLIST
16 //! \brief Check whether an item is a playlist.
17 bool IsPlayList(const CFileItem& item);
19 //! \brief Check whether an item is a smart playlist.
20 bool IsSmartPlayList(const CFileItem& item);
22 } // namespace KODI::PLAYLIST