X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffile.h;h=6353a4626c5461036ffd4a935d15b12b0efbffbc;hp=4e86e29642c47dd35b52b0978b6b7be7b38d05f8;hb=49c1f3c3ffdf318579a809f3f800442c0c76c818;hpb=21bf2db4f8600a576dc8d6bfa82bb83e64d8424f diff --git a/source/file.h b/source/file.h index 4e86e29..6353a46 100644 --- a/source/file.h +++ b/source/file.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_FILE_H_ #define MSP_IO_FILE_H_ @@ -26,12 +20,12 @@ class File: public Base public: enum CreateMode { - C_NONE=0, - C_CREATE=1, - C_TRUNCATE=2 + C_NONE = 0, + C_CREATE = 1, + C_TRUNCATE = 2 }; - File(const std::string &, Mode=M_READ, CreateMode =CreateMode(C_CREATE+C_TRUNCATE)); + File(const std::string &, Mode = M_READ, CreateMode =CreateMode(C_CREATE+C_TRUNCATE)); void close();