create a c++ sepa.xml tool using xerces for windows only the code, no explanation qwen mit 30B Parametern Das war nix. ```cpp #include #include #include #include #include using namespace xercesc; using namespace std; int main() { try { XMLPlatformUtils::Initialize(); } catch (const XMLException& toCatch) { return 1; } XercesDOMParser* parser = new XercesDOMParser(); parser->setValidationScheme(XercesDOMParser::Val_Never); parser->setDoNamespaces(false); parser->setDoSchema(false); try { parser->parse("pain.008.001.08.xml"); DOMDocument* doc = parser->getDocument(); DOMElement* root = doc->getDocumentElement(); // Process the document DOMNodeList* nodeList = root->getChildNodes(); for (XMLSize_t i = 0; i < nodeList->getLength(); i++) { DOMNode* node = nodeList->item(i); if (node->getNodeType() == DOMNode::ELEMENT_NODE) { cout << "Element: " << node->getNodeName() << endl; } } } catch (const XMLException& toCatch) { cout << "Error parsing file" << endl; } delete parser; XMLPlatformUtils::Terminate(); return 0; } ```