[PVR][Estuary] Timer settings dialog: Show client name in timer type selection dialog...
[xbmc.git] / xbmc / filesystem / PluginFile.h
blob5e66c06b1c4cb7b5924da149e7179d749a806f69
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 #pragma once
11 #include "filesystem/OverrideFile.h"
13 namespace XFILE
15 class CPluginFile : public COverrideFile
17 public:
18 CPluginFile(void);
19 ~CPluginFile(void) override;
20 bool Exists(const CURL& url) override;
22 protected:
23 std::string TranslatePath(const CURL& url) override;
25 } // namespace XFILE