Fix svn props
[shibboleth/cpp-sp.git] / shibsp / attribute / filtering / impl / DummyAttributeFilter.cpp
index f85f2df..d4f5660 100644 (file)
  * "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.
- */\r
-\r
-/**\r
- * DummyAttributeFilter.cpp\r
- * \r
- * Pathological AttributeFilter that rejects all attributes.\r
- */\r
-\r
-#include "internal.h"\r
-#include "attribute/Attribute.h"\r
-#include "attribute/filtering/AttributeFilter.h"\r
-\r
-using namespace shibsp;\r
-using namespace xmltooling;\r
-using namespace std;\r
-\r
-namespace shibsp {\r
-\r
-    class SHIBSP_DLLLOCAL DummyAttributeFilter : public AttributeFilter\r
-    {\r
-    public:\r
-        DummyAttributeFilter(const DOMElement* e) {\r
-        }\r
-        virtual ~DummyAttributeFilter() {\r
-        }\r
-        \r
-        Lockable* lock() {\r
-            return this;\r
-        }\r
-        void unlock() {\r
-        }\r
-        \r
-        void filterAttributes(const FilteringContext& context, vector<Attribute*>& attributes) const {\r
-            Category::getInstance(SHIBSP_LOGCAT".AttributeFilter.Dummy").warn("filtering out all attributes");\r
-            for_each(attributes.begin(), attributes.end(), xmltooling::cleanup<Attribute>());\r
-            attributes.clear();\r
-        }\r
-    };\r
-\r
-    AttributeFilter* SHIBSP_DLLLOCAL DummyAttributeFilterFactory(const DOMElement* const & e)\r
-    {\r
-        return new DummyAttributeFilter(e);\r
-    }\r
-};\r
+ */
+
+/**
+ * DummyAttributeFilter.cpp
+ * 
+ * Pathological AttributeFilter that rejects all attributes.
+ */
+
+#include "internal.h"
+#include "attribute/Attribute.h"
+#include "attribute/filtering/AttributeFilter.h"
+
+using namespace shibsp;
+using namespace xmltooling;
+using namespace std;
+
+namespace shibsp {
+
+    class SHIBSP_DLLLOCAL DummyAttributeFilter : public AttributeFilter
+    {
+    public:
+        DummyAttributeFilter(const DOMElement* e) {
+        }
+        virtual ~DummyAttributeFilter() {
+        }
+        
+        Lockable* lock() {
+            return this;
+        }
+        void unlock() {
+        }
+        
+        void filterAttributes(const FilteringContext& context, vector<Attribute*>& attributes) const {
+            Category::getInstance(SHIBSP_LOGCAT".AttributeFilter.Dummy").warn("filtering out all attributes");
+            for_each(attributes.begin(), attributes.end(), xmltooling::cleanup<Attribute>());
+            attributes.clear();
+        }
+    };
+
+    AttributeFilter* SHIBSP_DLLLOCAL DummyAttributeFilterFactory(const DOMElement* const & e)
+    {
+        return new DummyAttributeFilter(e);
+    }
+};