From 2615896faa646e5830abf2c269150e1165c66515 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 18 Dec 2020 18:48:46 +0300 Subject: Switch to build2 --- libxsd/xsd/cxx/xml/dom/elements.txx | 55 ------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 libxsd/xsd/cxx/xml/dom/elements.txx (limited to 'libxsd/xsd/cxx/xml/dom/elements.txx') diff --git a/libxsd/xsd/cxx/xml/dom/elements.txx b/libxsd/xsd/cxx/xml/dom/elements.txx deleted file mode 100644 index 46e4866..0000000 --- a/libxsd/xsd/cxx/xml/dom/elements.txx +++ /dev/null @@ -1,55 +0,0 @@ -// file : xsd/cxx/xml/dom/elements.txx -// license : GNU GPL v2 + exceptions; see accompanying LICENSE file - -#include - -namespace xsd -{ - namespace cxx - { - namespace xml - { - namespace dom - { - template - qualified_name - name (const xercesc::DOMAttr& a) - { - const XMLCh* n (a.getLocalName ()); - - // If this DOM doesn't support namespaces then use getName. - // - if (n != 0) - { - if (const XMLCh* ns = a.getNamespaceURI ()) - return qualified_name (transcode (n), transcode (ns)); - else - return qualified_name (transcode (n)); - } - else - return qualified_name (transcode (a.getName ())); - } - - - template - qualified_name - name (const xercesc::DOMElement& e) - { - const XMLCh* n (e.getLocalName ()); - - // If this DOM doesn't support namespaces then use getTagName. - // - if (n != 0) - { - if (const XMLCh* ns = e.getNamespaceURI ()) - return qualified_name (transcode (n), transcode (ns)); - else - return qualified_name (transcode (n)); - } - else - return qualified_name (transcode (e.getTagName ())); - } - } - } - } -} -- cgit v1.1