void TestParser::startEntityReference(const XMLEntityDecl& entDecl) { if (fOutputType == OutputType_Debug) { XERCES_STD_QUALIFIER cout << "Got STARTENTITY:\n " << "Name: " << StrX(entDecl.getName()) << "\n" << XERCES_STD_QUALIFIER endl; } }
void NsSAX2Reader::startEntityReference(const XMLEntityDecl& entityDecl) { const xmlch_t *name = entityDecl.getName(); uint32_t length = XercesStringLen(name); fHandler->startEntity(name, length); }