X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fopensaml2.git;a=blobdiff_plain;f=saml%2Fsaml1%2Fbinding%2Fimpl%2FSAML1POSTDecoder.cpp;h=b9651abc7d26731f90da915f4e05f15aaa71d38b;hp=ef39d628967da4e92ed8c0a84a074854a033920f;hb=c2f3cb788f744ebb8d89b22e0676b68737abfa9f;hpb=79a4c41067afcfa75eb82aa3c49ba3573640b0bd diff --git a/saml/saml1/binding/impl/SAML1POSTDecoder.cpp b/saml/saml1/binding/impl/SAML1POSTDecoder.cpp index ef39d62..b9651ab 100644 --- a/saml/saml1/binding/impl/SAML1POSTDecoder.cpp +++ b/saml/saml1/binding/impl/SAML1POSTDecoder.cpp @@ -47,7 +47,7 @@ namespace opensaml { class SAML_DLLLOCAL SAML1POSTDecoder : public MessageDecoder { public: - SAML1POSTDecoder(const DOMElement* e) {} + SAML1POSTDecoder() {} virtual ~SAML1POSTDecoder() {} xmltooling::XMLObject* decode( @@ -57,9 +57,9 @@ namespace opensaml { ) const; }; - MessageDecoder* SAML_DLLLOCAL SAML1POSTDecoderFactory(const DOMElement* const & e) + MessageDecoder* SAML_DLLLOCAL SAML1POSTDecoderFactory(const pair& p) { - return new SAML1POSTDecoder(e); + return new SAML1POSTDecoder(); } }; };