Added marker interface for assertion types.
[shibboleth/cpp-opensaml.git] / saml / binding / XMLSigningRule.h
index 2aec46a..b6f42c7 100644 (file)
@@ -33,10 +33,14 @@ namespace opensaml {
     class SAML_API XMLSigningRule : public SecurityPolicyRule
     {
     public:
-        XMLSigningRule(const DOMElement* e) {}
+        XMLSigningRule(const DOMElement* e);
         virtual ~XMLSigningRule() {}
         
         void evaluate(const xmltooling::XMLObject& message, const GenericRequest* request, SecurityPolicy& policy) const;
+
+    protected:
+        /** Flag determining whether to raise exceptions if a signature fails to validate. */
+        bool m_errorsFatal;
     };
     
 };