Fix comments, add a missing const.
[shibboleth/cpp-opensaml.git] / saml / saml2 / binding / SAML2Artifact.h
index e368085..05e7e3c 100644 (file)
@@ -50,8 +50,18 @@ namespace opensaml {
         protected:
             SAML2Artifact() {}
 
+            /**
+             * Constructor.
+             * 
+             * @param s raw artifact string
+             */
             SAML2Artifact(const char* s) : SAMLArtifact(s) {}
     
+            /**
+             * Copy constructor.
+             * 
+             * @param src   object to copy
+             */
             SAML2Artifact(const SAML2Artifact& src) : SAMLArtifact(src) {}
         };