xbmc
ResourceDirectory.h
1 /*
2  * Copyright (C) 2014-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 "filesystem/OverrideDirectory.h"
12 
13 namespace XFILE
14 {
16  {
17  public:
19  ~CResourceDirectory() override;
20 
21  bool GetDirectory(const CURL& url, CFileItemList &items) override;
22 
23  protected:
24  std::string TranslatePath(const CURL &url) override;
25  };
26 }
Definition: Scraper.h:41
Definition: ResourceDirectory.h:15
Represents a list of files.
Definition: FileItem.h:721
Definition: URL.h:21
bool GetDirectory(const CURL &url, CFileItemList &items) override
Get the items of the directory strPath.
Definition: ResourceDirectory.cpp:23
Definition: OverrideDirectory.h:15