Merge pull request #25808 from CastagnaIT/fix_url_parse
[xbmc.git] / xbmc / filesystem / UDFDirectory.h
blobea4487a40a2ede04e32ddd8c00930414c8d505b7
1 /*
2 * Copyright (C) 2010 Team Boxee
3 * http://www.boxee.tv
5 * Copyright (C) 2010-2018 Team Kodi
6 * This file is part of Kodi - https://kodi.tv
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 * See LICENSES/README.md for more information.
12 #pragma once
14 #include "IFileDirectory.h"
16 namespace XFILE
19 class CUDFDirectory : public IFileDirectory
21 public:
22 CUDFDirectory() = default;
23 ~CUDFDirectory() = default;
24 bool GetDirectory(const CURL& url, CFileItemList& items) override;
25 bool Exists(const CURL& url) override;
26 bool ContainsFiles(const CURL& url) override { return true; }