kodi
ISO9660Directory.h
1 /*
2  * Copyright (C) 2005-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 "IFileDirectory.h"
12 
13 namespace XFILE
14 {
15 
17 {
18 public:
19  CISO9660Directory() = default;
20  ~CISO9660Directory() = default;
21  bool GetDirectory(const CURL& url, CFileItemList& items) override;
22  bool Exists(const CURL& url) override;
23  bool ContainsFiles(const CURL& url) override { return true; }
24  bool Resolve(CFileItem& item) const override;
25 };
26 }
Definition: Scraper.h:41
Represents a list of files.
Definition: FileItem.h:702
Definition: URL.h:21
bool Exists(const CURL &url) override
Check for directory existence.
Definition: ISO9660Directory.cpp:77
bool Resolve(CFileItem &item) const override
Resolves a given item to a playable item.
Definition: ISO9660Directory.cpp:83
bool GetDirectory(const CURL &url, CFileItemList &items) override
Get the items of the directory strPath.
Definition: ISO9660Directory.cpp:19
Definition: ISO9660Directory.h:16
Definition: IFileDirectory.h:15
Represents a file on a share.
Definition: FileItem.h:102