[PVR][Estuary] Timer settings dialog: Show client name in timer type selection dialog...
[xbmc.git] / xbmc / utils / CSSUtils.h
blob9d610bbddd13611c3c5a71d874aacf168730564f
1 /*
2 * Copyright (C) 2005-2021 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 <string>
13 namespace UTILS
15 namespace CSS
18 /*! \brief Escape a CSS string
19 * \param str the string to be escaped
21 void Escape(std::string& str);
23 } // namespace CSS
24 } // namespace UTILS