fs/FileSystem: remove unused FOpenModes
This commit is contained in:
parent
00b0f6ad51
commit
4c899e9c5a
|
@ -33,35 +33,15 @@
|
|||
class AllocatedPath;
|
||||
|
||||
namespace FOpenMode {
|
||||
/**
|
||||
* Open mode for reading text files.
|
||||
*/
|
||||
constexpr PathTraitsFS::const_pointer ReadText = "r";
|
||||
|
||||
/**
|
||||
* Open mode for reading binary files.
|
||||
*/
|
||||
constexpr PathTraitsFS::const_pointer ReadBinary = "rb";
|
||||
|
||||
/**
|
||||
* Open mode for writing text files.
|
||||
*/
|
||||
constexpr PathTraitsFS::const_pointer WriteText = "w";
|
||||
|
||||
/**
|
||||
* Open mode for writing binary files.
|
||||
*/
|
||||
constexpr PathTraitsFS::const_pointer WriteBinary = "wb";
|
||||
|
||||
/**
|
||||
* Open mode for appending text files.
|
||||
*/
|
||||
constexpr PathTraitsFS::const_pointer AppendText = "a";
|
||||
|
||||
/**
|
||||
* Open mode for appending binary files.
|
||||
*/
|
||||
constexpr PathTraitsFS::const_pointer AppendBinary = "ab";
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue