[Windows] Fix driver version detection of AMD RDNA+ GPU on Windows 10
[xbmc.git] / xbmc / pvr / PVREdl.h
blob7440b08bababbd98d89a9b89f7534b230e77228a
1 /*
2 * Copyright (C) 2012-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 <vector>
13 class CFileItem;
15 namespace EDL
17 struct Edit;
20 namespace PVR
23 class CPVREdl
25 public:
26 /*!
27 * @brief Get the EDL edits for the given item.
28 * @param item The item.
29 * @return The EDL edits or an empty vector if no edits exist.
31 static std::vector<EDL::Edit> GetEdits(const CFileItem& item);
34 } // namespace PVR