bool XmlSaxHander::Visit( const tinyxml2::XMLText& text )
{
	//CCLog("Visit %s",text.Value());
	CCSAXParser::textHandler(m_ccsaxParserImp, (const CC_XML_CHAR *)text.Value(), (unsigned int)strlen(text.Value()));
	return true;
}
示例#2
0
bool XmlSaxHander::Visit( const tinyxml2::XMLText& text )
{
    //log("Visit %s",text.Value());
    SAXParser::textHandler(_ccsaxParserImp, (const CC_XML_CHAR *)text.Value(), static_cast<int>(strlen(text.Value())));
    return true;
}
bool XML_SaxHandler::Visit( const tinyxml2::XMLText& text )
{
	XML_SaxParser::textHandler(_parser, (const unsigned char *)text.Value(), (int)strlen(text.Value()));
	return true;
}