diff options
author | Dāvis Mosāns <davispuh@gmail.com> | 2016-10-05 13:43:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-10-06 14:56:00 (GMT) |
commit | f00214aa4f8036951a926efd7dc3891d47abce49 (patch) | |
tree | aa2bf607f5e77144e7ddf8fedafe53196c55c623 /Source/cmGeneratedFileStream.h | |
parent | bb1d3370cedceec48c82a523cf35df2207c7db17 (diff) | |
download | CMake-f00214aa4f8036951a926efd7dc3891d47abce49.zip CMake-f00214aa4f8036951a926efd7dc3891d47abce49.tar.gz CMake-f00214aa4f8036951a926efd7dc3891d47abce49.tar.bz2 |
cmGeneratedFileStream: Add optional encoding support
This allows to save file stream in different encoding than internal
encoding.
Diffstat (limited to 'Source/cmGeneratedFileStream.h')
-rw-r--r-- | Source/cmGeneratedFileStream.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmGeneratedFileStream.h b/Source/cmGeneratedFileStream.h index 515954c..a027b01 100644 --- a/Source/cmGeneratedFileStream.h +++ b/Source/cmGeneratedFileStream.h @@ -5,6 +5,7 @@ #include <cmConfigure.h> +#include <cm_codecvt.hxx> #include <cmsys/FStream.hxx> #include <string> @@ -71,12 +72,13 @@ class cmGeneratedFileStream : private cmGeneratedFileStreamBase, { public: typedef cmsys::ofstream Stream; + typedef codecvt::Encoding Encoding; /** * This constructor prepares a default stream. The open method must * be used before writing to the stream. */ - cmGeneratedFileStream(); + cmGeneratedFileStream(Encoding encoding = codecvt::None); /** * This constructor takes the name of the file to be generated. It @@ -84,7 +86,8 @@ public: * file cannot be opened an error message is produced unless the * second argument is set to true. */ - cmGeneratedFileStream(const char* name, bool quiet = false); + cmGeneratedFileStream(const char* name, bool quiet = false, + Encoding encoding = codecvt::None); /** * The destructor checks the stream status to be sure the temporary |