2 * UPnP Support for XBMC
3 * Copyright (c) 2006 c0diq (Sylvain Rebaud)
4 * Portions Copyright (c) by the authors of libPlatinum
5 * http://www.plutinosoft.com/blog/category/platinum/
7 * Copyright (C) 2010-2018 Team Kodi
8 * This file is part of Kodi - https://kodi.tv
10 * SPDX-License-Identifier: GPL-2.0-or-later
11 * See LICENSES/README.md for more information.
16 #include "IDirectory.h"
23 class CUPnPDirectory
: public IDirectory
26 CUPnPDirectory(void) = default;
27 ~CUPnPDirectory(void) override
= default;
30 bool GetDirectory(const CURL
& url
, CFileItemList
&items
) override
;
31 bool AllowAll() const override
{ return true; }
34 static const char* GetFriendlyName(const CURL
& url
);
35 static bool GetResource(const CURL
&path
, CFileItem
& item
);