/xbmc/utils/HTMLUtil.h
http://github.com/xbmc/xbmc · C Header · 23 lines · 13 code · 3 blank · 7 comment · 0 complexity · f220afc7854c548d810960f38218ab8e MD5 · raw file
- /*
- * Copyright (C) 2005-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 <string>
- namespace HTML
- {
- class CHTMLUtil
- {
- public:
- CHTMLUtil(void);
- virtual ~CHTMLUtil(void);
- static void RemoveTags(std::string& strHTML);
- static void ConvertHTMLToW(const std::wstring& strHTML, std::wstring& strStripped);
- };
- }