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"
17 \brief Get access to a directory of a file system.
19 The Factory can be used to create a directory object
20 for every file system accessable. \n
25 std::string strShare="iso9660://";
27 IDirectory* pDir=CDirectoryFactory::Create(strShare);
29 The \e pDir pointer can be used to access a directory and retrieve it's content.
31 When different types of shares have to be accessed use CVirtualDirectory.
34 class CDirectoryFactory
37 static IDirectory
* Create(const CURL
& url
);