Convert from NULL macro to nullptr.
[shibboleth/cpp-xmltooling.git] / xmltooling / security / SignatureTrustEngine.h
index fe17c16..8d72820 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *  Copyright 2001-2009 Internet2
+ *  Copyright 2001-2010 Internet2
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -53,7 +53,7 @@ namespace xmltooling {
          * 
          * @param e DOM to supply configuration for provider
          */
-        SignatureTrustEngine(const xercesc::DOMElement* e=NULL);
+        SignatureTrustEngine(const xercesc::DOMElement* e=nullptr);
         
     public:
         virtual ~SignatureTrustEngine();
@@ -79,7 +79,7 @@ namespace xmltooling {
         virtual bool validate(
             xmlsignature::Signature& sig,
             const CredentialResolver& credResolver,
-            CredentialCriteria* criteria=NULL
+            CredentialCriteria* criteria=nullptr
             ) const=0;
 
         /**
@@ -115,7 +115,7 @@ namespace xmltooling {
             const char* in,
             unsigned int in_len,
             const CredentialResolver& credResolver,
-            CredentialCriteria* criteria=NULL
+            CredentialCriteria* criteria=nullptr
             ) const=0;
     };
 };