fs/FileSystem: remove unused FOpenModes
This commit is contained in:
@@ -33,35 +33,15 @@
|
|||||||
class AllocatedPath;
|
class AllocatedPath;
|
||||||
|
|
||||||
namespace FOpenMode {
|
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.
|
* Open mode for writing text files.
|
||||||
*/
|
*/
|
||||||
constexpr PathTraitsFS::const_pointer WriteText = "w";
|
constexpr PathTraitsFS::const_pointer WriteText = "w";
|
||||||
|
|
||||||
/**
|
|
||||||
* Open mode for writing binary files.
|
|
||||||
*/
|
|
||||||
constexpr PathTraitsFS::const_pointer WriteBinary = "wb";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Open mode for appending text files.
|
* Open mode for appending text files.
|
||||||
*/
|
*/
|
||||||
constexpr PathTraitsFS::const_pointer AppendText = "a";
|
constexpr PathTraitsFS::const_pointer AppendText = "a";
|
||||||
|
|
||||||
/**
|
|
||||||
* Open mode for appending binary files.
|
|
||||||
*/
|
|
||||||
constexpr PathTraitsFS::const_pointer AppendBinary = "ab";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user