[PVR][Estuary] Timer settings dialog: Show client name in timer type selection dialog...
[xbmc.git] / xbmc / filesystem / PluginFile.cpp
bloba1f14331084f40c5851a19813871206a13671784
1 /*
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.
7 */
9 #include "PluginFile.h"
11 #include "URL.h"
13 using namespace XFILE;
15 CPluginFile::CPluginFile(void) : COverrideFile(false)
19 CPluginFile::~CPluginFile(void) = default;
21 bool CPluginFile::Exists(const CURL& url)
23 return true;
26 std::string CPluginFile::TranslatePath(const CURL& url)
28 return url.Get();