[PVR][Estuary] Timer settings dialog: Show client name in timer type selection dialog...
[xbmc.git] / xbmc / filesystem / FileFactory.h
blobec0fd108410c3dd285d2d16e6c25a4d3869b5247
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 // FileFactory1.h: interface for the CFileFactory class.
13 //////////////////////////////////////////////////////////////////////
15 #include "IFile.h"
17 #include <string>
19 namespace XFILE
21 class CFileFactory
23 public:
24 CFileFactory();
25 virtual ~CFileFactory();
26 static IFile* CreateLoader(const std::string& strFileName);
27 static IFile* CreateLoader(const CURL& url);