2 * Copyright (C) 2010 Team Boxee
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.
14 #include "IFileDirectory.h"
19 class CUDFDirectory
: public IFileDirectory
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; }