Major revamp of credential and trust handling code, PKIX engine still needs work.
[shibboleth/cpp-xmltooling.git] / xmltooling / AbstractXMLObject.h
index 4df58e4..576a7d0 100644 (file)
@@ -48,6 +48,7 @@ namespace xmltooling {
         virtual ~AbstractXMLObject() {
             delete m_typeQname;
             XMLString::release(&m_schemaLocation);
+            XMLString::release(&m_noNamespaceSchemaLocation);
         }
 
         void detach();
@@ -201,6 +202,11 @@ namespace xmltooling {
          */
         XMLCh* m_schemaLocation;
 
+        /**
+         * Stores off xsi:noNamespaceSchemaLocation attribute.
+         */
+        XMLCh* m_noNamespaceSchemaLocation;
+
     private:
         XMLObject* m_parent;
         QName m_elementQname;