[Windows] Fix driver version detection of AMD RDNA+ GPU on Windows 10
[xbmc.git] / xbmc / settings / SettingCreator.h
blob68d4588f808e255ad4613f8318d4a9ee8907e5ec
1 /*
2 * Copyright (C) 2014-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 "settings/lib/ISettingCreator.h"
13 class CSettingCreator : public ISettingCreator
15 public:
16 // implementation of ISettingCreator
17 std::shared_ptr<CSetting> CreateSetting(const std::string &settingType, const std::string &settingId, CSettingsManager *settingsManager = nullptr) const override;
19 protected:
20 CSettingCreator() = default;
21 ~CSettingCreator() override = default;