X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fmode.h;h=5e103f278907be65a1f7f91da38ac34c5d113301;hb=49c1f3c3ffdf318579a809f3f800442c0c76c818;hp=c58ecb0bd55894474b5b828859a7ea9939d5bef0;hpb=21bf2db4f8600a576dc8d6bfa82bb83e64d8424f;p=libs%2Fcore.git diff --git a/source/mode.h b/source/mode.h index c58ecb0..5e103f2 100644 --- a/source/mode.h +++ b/source/mode.h @@ -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)