X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=saml%2Fsaml2%2Fbinding%2Fimpl%2FSAML2POSTDecoder.cpp;h=db218a071479a37e6c2a176f650cfe79132ff4b7;hp=988aa0f15f2b1e47af217ad5a1cdd8df548a5995;hb=11cd3b15c71ee22f2818d810a17c213123e8c248;hpb=db648eb8d96bd4414060b4a7a59da5a78749d98b diff --git a/saml/saml2/binding/impl/SAML2POSTDecoder.cpp b/saml/saml2/binding/impl/SAML2POSTDecoder.cpp index 988aa0f..db218a0 100644 --- a/saml/saml2/binding/impl/SAML2POSTDecoder.cpp +++ b/saml/saml2/binding/impl/SAML2POSTDecoder.cpp @@ -46,7 +46,7 @@ namespace opensaml { class SAML_DLLLOCAL SAML2POSTDecoder : public MessageDecoder { public: - SAML2POSTDecoder(const DOMElement* e) {} + SAML2POSTDecoder() {} virtual ~SAML2POSTDecoder() {} xmltooling::XMLObject* decode( @@ -56,9 +56,9 @@ namespace opensaml { ) const; }; - MessageDecoder* SAML_DLLLOCAL SAML2POSTDecoderFactory(const DOMElement* const & e) + MessageDecoder* SAML_DLLLOCAL SAML2POSTDecoderFactory(const pair& p) { - return new SAML2POSTDecoder(e); + return new SAML2POSTDecoder(); } }; };