kodi
PVREdl.h
1 /*
2  * Copyright (C) 2012-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 <vector>
12 
13 class CFileItem;
14 
15 namespace EDL
16 {
17 struct Edit;
18 }
19 
20 namespace PVR
21 {
22 
23 class CPVREdl
24 {
25 public:
31  static std::vector<EDL::Edit> GetEdits(const CFileItem& item);
32 };
33 
34 } // namespace PVR
Definition: ContextMenuManager.h:24
Definition: PVREdl.h:23
Definition: EdlEdit.h:11
Represents a file on a share.
Definition: FileItem.h:102