diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-03 13:53:11 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-03 13:53:11 +0200 |
commit | 2a72c5c8384d23cad054058ba0066ef5b163694e (patch) | |
tree | 035c11a464a7e1a6c3ce3d5caf01ccdbd9e62aa7 /source/cFile.h | |
parent | Removed the DeNotcher project, as it's no longer needed and won't even compile (diff) | |
download | cuberite-2a72c5c8384d23cad054058ba0066ef5b163694e.tar cuberite-2a72c5c8384d23cad054058ba0066ef5b163694e.tar.gz cuberite-2a72c5c8384d23cad054058ba0066ef5b163694e.tar.bz2 cuberite-2a72c5c8384d23cad054058ba0066ef5b163694e.tar.lz cuberite-2a72c5c8384d23cad054058ba0066ef5b163694e.tar.xz cuberite-2a72c5c8384d23cad054058ba0066ef5b163694e.tar.zst cuberite-2a72c5c8384d23cad054058ba0066ef5b163694e.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cFile.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/cFile.h b/source/cFile.h index 373d69958..d16784236 100644 --- a/source/cFile.h +++ b/source/cFile.h @@ -49,9 +49,9 @@ public: /// The mode in which to open the file enum EMode { - fmRead, // Read-only. If the file doesn't exist, object will not be valid - fmWrite, // Write-only. If the file already exists, it will be overwritten - fmReadWrite, // Read/write. If the file already exists, it will be left intact; writing will overwrite the data from the beginning + fmRead, // Read-only. If the file doesn't exist, object will not be valid + fmWrite, // Write-only. If the file already exists, it will be overwritten + fmReadWrite // Read/write. If the file already exists, it will be left intact; writing will overwrite the data from the beginning } ; /// Simple constructor - creates an unopened file object, use Open() to open / create a real file |