X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=xmltooling%2FAbstractDOMCachingXMLObject.h;h=9bb7cca65b4dbd3b6484cebbb005290f19e285bb;hb=fbb50076025b3885017ebae06b5e67af42303e96;hp=9ceda4419c8afad71d195ec0d3c137c25f832f97;hpb=8b068e4e2fc5af0f5644fda73e8e0c48f221c72b;p=shibboleth%2Fcpp-xmltooling.git diff --git a/xmltooling/AbstractDOMCachingXMLObject.h b/xmltooling/AbstractDOMCachingXMLObject.h index 9ceda44..9bb7cca 100644 --- a/xmltooling/AbstractDOMCachingXMLObject.h +++ b/xmltooling/AbstractDOMCachingXMLObject.h @@ -41,13 +41,13 @@ namespace xmltooling { public: virtual ~AbstractDOMCachingXMLObject(); - DOMElement* getDOM() const { + xercesc::DOMElement* getDOM() const { return m_dom; } - void setDOM(DOMElement* dom, bool bindDocument=false) const; + void setDOM(xercesc::DOMElement* dom, bool bindDocument=false) const; - void setDocument(DOMDocument* doc) const { + void setDocument(xercesc::DOMDocument* doc) const { if (m_document) m_document->release(); m_document=doc; @@ -76,11 +76,11 @@ namespace xmltooling { * @param doc the document to clone into, or NULL, in which case a new document is created * @return the cloned DOM */ - DOMElement* cloneDOM(DOMDocument* doc=NULL) const; + xercesc::DOMElement* cloneDOM(xercesc::DOMDocument* doc=NULL) const; private: - mutable DOMElement* m_dom; - mutable DOMDocument* m_document; + mutable xercesc::DOMElement* m_dom; + mutable xercesc::DOMDocument* m_document; }; };