diff options
Diffstat (limited to 'xbmc/filesystem/SourcesDirectory.h')
-rw-r--r-- | xbmc/filesystem/SourcesDirectory.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/xbmc/filesystem/SourcesDirectory.h b/xbmc/filesystem/SourcesDirectory.h new file mode 100644 index 0000000..84df8f0 --- /dev/null +++ b/xbmc/filesystem/SourcesDirectory.h @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2005-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#pragma once + +#include "IDirectory.h" + +#include <vector> + +class CMediaSource; +typedef std::vector<CMediaSource> VECSOURCES; + +namespace XFILE +{ + class CSourcesDirectory : public IDirectory + { + public: + CSourcesDirectory(void); + ~CSourcesDirectory(void) override; + bool GetDirectory(const CURL& url, CFileItemList &items) override; + bool GetDirectory(const VECSOURCES &sources, CFileItemList &items); + bool Exists(const CURL& url) override; + bool AllowAll() const override { return true; } + }; +} |