xbmc
DirectoryFactory.h
1 /*
2  * Copyright (C) 2005-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "IDirectory.h"
12 
13 namespace XFILE
14 {
35 {
36 public:
37  static IDirectory* Create(const CURL& url);
38 };
39 }
Interface to the directory on a file system.
Definition: IDirectory.h:50
Definition: Scraper.h:41
Definition: URL.h:20
static IDirectory * Create(const CURL &url)
Create a IDirectory object of the share type specified in strPath .
Definition: DirectoryFactory.cpp:95
Get access to a directory of a file system.
Definition: DirectoryFactory.h:34