changed: update version strings for beta4
[xbmc.git] / xbmc / utils / HTMLUtil.h
blobceb53e240de1b2a6b6788dc9f47cf57014af28ec
1 #pragma once
3 /*
4 * Copyright (C) 2005-2008 Team XBMC
5 * http://www.xbmc.org
7 * This Program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
12 * This Program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with XBMC; see the file COPYING. If not, write to
19 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 * http://www.gnu.org/copyleft/gpl.html
24 namespace HTML
26 class CHTMLUtil
28 public:
29 CHTMLUtil(void);
30 virtual ~CHTMLUtil(void);
31 int FindTag(const CStdString& strHTML, const CStdString& strTag, CStdString& strtagFound, int iPos = 0) const;
32 int FindClosingTag(const CStdString& strHTML, const CStdString& strTag, CStdString& strtagFound, int iPos) const;
33 void getValueOfTag(const CStdString& strTagAndValue, CStdString& strValue);
34 void getAttributeOfTag(const CStdString& strTagAndValue, const CStdString& strTag, CStdString& strValue);
35 static void RemoveTags(CStdString& strHTML);
36 static void ConvertHTMLToW(const CStdStringW& strHTML, CStdStringW& strStripped);