]> git.tdb.fi Git - libs/core.git/blobdiff - source/filtered.h
Drop copyright and license notices from files
[libs/core.git] / source / filtered.h
index e3ff219834aac6641260b58abb324353b0bd041a..98cda4740a1700c3e41903156fce1de3c088f9b2 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspio
-Copyright © 2008  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_IO_FILTERED_H_
 #define MSP_IO_FILTERED_H_
 
@@ -19,8 +12,8 @@ private:
        {
                Filtered &f;
 
-               Activator(Filtered &f_): f(f_) { f.active=true; }
-               ~Activator() { f.active=false; }
+               Activator(Filtered &f_): f(f_) { f.active = true; }
+               ~Activator() { f.active = false; }
        };
 
        F filter;
@@ -28,7 +21,7 @@ private:
 
 public:
        Filtered(): filter(*this), active(false) { }
-       ~Filtered() { active=true; }
+       ~Filtered() { active = true; }
 
        template<typename A0>
        Filtered(A0 a0): B(a0), filter(*this), active(false) { }