Reducing header overuse, non-inlining selected methods (CPPOST-35).
[shibboleth/cpp-xmltooling.git] / xmltooling / impl / AnyElement.h
index d287154..4151cd3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *  Copyright 2001-2006 Internet2
+ *  Copyright 2001-2009 Internet2
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -49,22 +49,21 @@ namespace xmltooling {
     {
     /// @cond OFF
     public:
-        virtual ~AnyElementImpl() {}
+        virtual ~AnyElementImpl();
 
-        AnyElementImpl(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const QName* schemaType=NULL)
-            : AbstractXMLObject(nsURI, localName, prefix, schemaType) {}
+        AnyElementImpl(const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix=NULL, const QName* schemaType=NULL);
         
         XMLObject* clone() const;
         
     protected:
-        AnyElementImpl() {}
+        AnyElementImpl();
         AnyElementImpl(const AnyElementImpl& src);
         
         IMPL_XMLOBJECT_CHILDREN(UnknownXMLObject,m_children.end());
         
-        void marshallAttributes(DOMElement* domElement) const;
-        void processChildElement(XMLObject* childXMLObject, const DOMElement* childRoot);
-        void processAttribute(const DOMAttr* attribute);
+        void marshallAttributes(xercesc::DOMElement* domElement) const;
+        void processChildElement(XMLObject* childXMLObject, const xercesc::DOMElement* childRoot);
+        void processAttribute(const xercesc::DOMAttr* attribute);
     };
     /// @endcond