From 86dc6de361ab40065c22b6286365b8fe7676e291 Mon Sep 17 00:00:00 2001 From: PeiYong Zhang <peiyongz@apache.org> Date: Wed, 7 Apr 2004 17:17:53 +0000 Subject: [PATCH] add createDocumentType extension to create DocumentType owned by the creating Document. git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@175862 13f79535-47bb-0310-9956-ffa450edef68 --- src/xercesc/dom/DOMDocument.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/xercesc/dom/DOMDocument.hpp b/src/xercesc/dom/DOMDocument.hpp index 2c8740cbf..d04f7b309 100644 --- a/src/xercesc/dom/DOMDocument.hpp +++ b/src/xercesc/dom/DOMDocument.hpp @@ -873,6 +873,9 @@ public: */ virtual DOMDocumentType *createDocumentType(const XMLCh *name) = 0; + virtual DOMDocumentType* createDocumentType(const XMLCh *qName, + const XMLCh *publicId, + const XMLCh *systemId) = 0; /** * Non-standard extension. -- GitLab