File: ParserSax.cc

package info (click to toggle)
htmlcxx 0.84-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,968 kB
  • ctags: 806
  • sloc: sh: 9,081; cpp: 4,350; ansic: 1,655; yacc: 523; lex: 159; xml: 102; makefile: 55; perl: 27
file content (7 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
#include "ParserSax.h"

void htmlcxx::HTML::ParserSax::parse(const std::string &html)
{
//	std::cerr << "Parsing string" << std::endl;
	parse(html.c_str(), html.c_str() + html.length());
}