/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

  1. /*
  2. * Copyright (C) 2005-2018 Team Kodi
  3. * This file is part of Kodi - https://kodi.tv
  4. *
  5. * SPDX-License-Identifier: GPL-2.0-or-later
  6. * See LICENSES/README.md for more information.
  7. */
  8. #pragma once
  9. #include <string>
  10. namespace HTML
  11. {
  12. class CHTMLUtil
  13. {
  14. public:
  15. CHTMLUtil(void);
  16. virtual ~CHTMLUtil(void);
  17. static void RemoveTags(std::string& strHTML);
  18. static void ConvertHTMLToW(const std::wstring& strHTML, std::wstring& strStripped);
  19. };
  20. }