2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
11 #include "IDirectory.h"
23 class CDAVDirectory
: public IDirectory
27 ~CDAVDirectory(void) override
;
28 bool GetDirectory(const CURL
& url
, CFileItemList
&items
) override
;
29 bool Create(const CURL
& url
) override
;
30 bool Exists(const CURL
& url
) override
;
31 bool Remove(const CURL
& url
) override
;
32 DIR_CACHE_TYPE
GetCacheType(const CURL
& url
) const override
{ return DIR_CACHE_ONCE
; }
35 void ParseResponse(const tinyxml2::XMLElement
* element
, CFileItem
& item
);