Fix linefeeds
[shibboleth/cpp-opensaml.git] / saml / signature / ContentReference.h
index 9bc9973..dbf4d95 100644 (file)
@@ -1,80 +1,80 @@
-/*\r
- *  Copyright 2001-2006 Internet2\r
- * \r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *     http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-\r
-/**\r
- * @file saml/signature/ContentReference.h\r
- * \r
- * SAML-specific signature reference profile \r
- */\r
-\r
-#ifndef __saml_sigref_h__\r
-#define __saml_sigref_h__\r
-\r
-#include <saml/base.h>\r
-#include <xmltooling/signature/ContentReference.h>\r
-\r
-#include <string>\r
-\r
-namespace opensaml {\r
-\r
-    class SAML_API SignableObject;\r
-\r
-    /**\r
-     * SAML-specific signature reference profile.\r
-     */\r
-    class SAML_API ContentReference : public virtual xmlsignature::ContentReference\r
-    {\r
-    public:\r
-        /**\r
-         * Constructor.\r
-         * \r
-         * @param signableObject    reference to object being signed\r
-         */\r
-        ContentReference(const SignableObject& signableObject) : m_signableObject(signableObject) {\r
-        }\r
-    \r
-        virtual ~ContentReference() {}\r
-\r
-        /**\r
-         * Given a "blank" native signature, creates signature reference\r
-         * appropriate for the SAML object being signed.\r
-         * \r
-         * @param sig   native signature interface\r
-         */\r
-        virtual void createReferences(DSIGSignature* sig);\r
-        \r
-        /**\r
-         * Adds a namespace prefix for "inclusive" processing by the\r
-         * Exclusive C14N Transform applied to the object.\r
-         * An empty string will be transformed into "#default".\r
-         * \r
-         * @param prefix    the prefix to add \r
-         */\r
-        void addInclusivePrefix(const char* prefix) {\r
-            m_prefixes.push_back(prefix);\r
-        }\r
-\r
-    protected:\r
-        /** Reference to object to sign. */\r
-        const SignableObject& m_signableObject;\r
-\r
-        /** Inclusive prefixes. */\r
-        std::vector<std::string> m_prefixes;\r
-    };\r
-\r
-};\r
-\r
-#endif /* __saml_sigref_h__ */\r
+/*
+ *  Copyright 2001-2006 Internet2
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * @file saml/signature/ContentReference.h
+ * 
+ * SAML-specific signature reference profile 
+ */
+
+#ifndef __saml_sigref_h__
+#define __saml_sigref_h__
+
+#include <saml/base.h>
+#include <xmltooling/signature/ContentReference.h>
+
+#include <string>
+
+namespace opensaml {
+
+    class SAML_API SignableObject;
+
+    /**
+     * SAML-specific signature reference profile.
+     */
+    class SAML_API ContentReference : public virtual xmlsignature::ContentReference
+    {
+    public:
+        /**
+         * Constructor.
+         * 
+         * @param signableObject    reference to object being signed
+         */
+        ContentReference(const SignableObject& signableObject) : m_signableObject(signableObject) {
+        }
+    
+        virtual ~ContentReference() {}
+
+        /**
+         * Given a "blank" native signature, creates signature reference
+         * appropriate for the SAML object being signed.
+         * 
+         * @param sig   native signature interface
+         */
+        virtual void createReferences(DSIGSignature* sig);
+        
+        /**
+         * Adds a namespace prefix for "inclusive" processing by the
+         * Exclusive C14N Transform applied to the object.
+         * An empty string will be transformed into "#default".
+         * 
+         * @param prefix    the prefix to add 
+         */
+        void addInclusivePrefix(const char* prefix) {
+            m_prefixes.push_back(prefix);
+        }
+
+    protected:
+        /** Reference to object to sign. */
+        const SignableObject& m_signableObject;
+
+        /** Inclusive prefixes. */
+        std::vector<std::string> m_prefixes;
+    };
+
+};
+
+#endif /* __saml_sigref_h__ */