diff options
Diffstat (limited to 'xbmc/settings/SettingAddon.h')
-rw-r--r-- | xbmc/settings/SettingAddon.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/xbmc/settings/SettingAddon.h b/xbmc/settings/SettingAddon.h new file mode 100644 index 0000000..d4aefc8 --- /dev/null +++ b/xbmc/settings/SettingAddon.h @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2013-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 "addons/IAddon.h" +#include "settings/lib/Setting.h" + +namespace ADDON +{ +enum class AddonType; +} + +class CSettingAddon : public CSettingString +{ +public: + CSettingAddon(const std::string &id, CSettingsManager *settingsManager = nullptr); + CSettingAddon(const std::string &id, int label, const std::string &value, CSettingsManager *settingsManager = nullptr); + CSettingAddon(const std::string &id, const CSettingAddon &setting); + ~CSettingAddon() override = default; + + SettingPtr Clone(const std::string &id) const override; + + bool Deserialize(const TiXmlNode *node, bool update = false) override; + + ADDON::AddonType GetAddonType() const { return m_addonType; } + void SetAddonType(ADDON::AddonType addonType) { m_addonType = addonType; } + +private: + void copyaddontype(const CSettingAddon &setting); + + ADDON::AddonType m_addonType{}; +}; |