Add code for non-covariant build.
[shibboleth/cpp-opensaml.git] / saml / saml2 / binding / SAML2POSTDecoder.h
index 31c2f6a..35b2ee9 100644 (file)
  */
 
 #include <saml/binding/MessageDecoder.h>
+#include <saml/saml2/core/Assertions.h>
 
 namespace opensaml {
+    
     namespace saml2p {
 
         /**
@@ -32,16 +34,12 @@ namespace opensaml {
         {
         public:
             SAML2POSTDecoder(const DOMElement* e);
-            virtual ~SAML2POSTDecoder();
+            virtual ~SAML2POSTDecoder() {}
             
             xmltooling::XMLObject* decode(
                 std::string& relayState,
-                const saml2md::RoleDescriptor*& issuer,
-                const XMLCh*& securityMech,
-                const HTTPRequest& httpRequest,
-                const saml2md::MetadataProvider* metadataProvider=NULL,
-                const xmltooling::QName* role=NULL,
-                const TrustEngine* trustEngine=NULL
+                const GenericRequest& genericRequest,
+                SecurityPolicy& policy
                 ) const;
         };