/* * 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. */ #include "InfoBool.h" #include "utils/StringUtils.h" namespace INFO { InfoBool::InfoBool(const std::string &expression, int context, unsigned int &refreshCounter) : m_value(false), m_context(context), m_listItemDependent(false), m_expression(expression), m_refreshCounter(0), m_parentRefreshCounter(refreshCounter) { StringUtils::ToLower(m_expression); } }