diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-05-30 21:26:38 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-05-30 21:26:38 (GMT) |
commit | 72ee8e6542aec1234109414c954e16c85d78a314 (patch) | |
tree | 60d13c142695c9ddc763e366b49f16b9f20b22c7 | |
parent | ea856b189d62082e032c95ccb4517438b214e4b2 (diff) | |
download | CMake-72ee8e6542aec1234109414c954e16c85d78a314.zip CMake-72ee8e6542aec1234109414c954e16c85d78a314.tar.gz CMake-72ee8e6542aec1234109414c954e16c85d78a314.tar.bz2 |
ENH: Add support for iomanip
-rw-r--r-- | Source/cmStandardIncludes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index 52eff2a..468ca8f 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -71,9 +71,11 @@ public: #ifndef CMAKE_NO_ANSI_STREAM_HEADERS # include <fstream> # include <iostream> +# include <iomanip> #else # include <fstream.h> # include <iostream.h> +# include <iomanip.h> #endif #if !defined(CMAKE_NO_ANSI_STRING_STREAM) @@ -169,6 +171,12 @@ using ::ofstream; using ::endl; using ::ends; using ::flush; +using ::dec; +using ::hex; +using ::setw; +using ::setiosflags; +using ::setfill; +using ::setprecision; } // The string class is missing these operators so add them #if !defined(cmsys_STL_STRING_NEQ_CHAR_DEFINED) |