]> git.tdb.fi Git - libs/core.git/blobdiff - source/mode.h
Drop copyright and license notices from files
[libs/core.git] / source / mode.h
index c58ecb0bd55894474b5b828859a7ea9939d5bef0..5e103f278907be65a1f7f91da38ac34c5d113301 100644 (file)
@@ -1,9 +1,3 @@
-/* $Id$
-
-This file is part of libmspio
-Copyright © 2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
 #ifndef MSP_IO_MODE_H_
 #define MSP_IO_MODE_H_
 
@@ -12,12 +6,12 @@ namespace IO {
 
 enum Mode
 {
-       M_NONE=0,
-       M_READ=1,
-       M_WRITE=2,
-       M_RDWR=M_READ|M_WRITE,
-       M_APPEND=4,
-       M_NONBLOCK=8
+       M_NONE = 0,
+       M_READ = 1,
+       M_WRITE = 2,
+       M_RDWR = M_READ|M_WRITE,
+       M_APPEND = 4,
+       M_NONBLOCK = 8
 };
 
 inline Mode operator|(Mode m, Mode n)