Add CRL support to file resolver.
[shibboleth/xmltooling.git] / xmltooling / AbstractDOMCachingXMLObject.h
index 94a9e56..125ef79 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *  Copyright 2001-2006 Internet2
+ *  Copyright 2001-2007 Internet2
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  */
 
 /**
- * @file AbstractDOMCachingXMLObject.h
+ * @file xmltooling/AbstractDOMCachingXMLObject.h
  * 
  * AbstractXMLObject mixin that implements DOM caching
  */
 
-#if !defined(__xmltooling_abstractdomxmlobj_h__)
+#ifndef __xmltooling_abstractdomxmlobj_h__
 #define __xmltooling_abstractdomxmlobj_h__
 
 #include <xmltooling/AbstractXMLObject.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;
     };
     
 };