ENH: Add support for iomanip
This commit is contained in:
parent
ea856b189d
commit
72ee8e6542
@ -71,9 +71,11 @@ public:
|
|||||||
#ifndef CMAKE_NO_ANSI_STREAM_HEADERS
|
#ifndef CMAKE_NO_ANSI_STREAM_HEADERS
|
||||||
# include <fstream>
|
# include <fstream>
|
||||||
# include <iostream>
|
# include <iostream>
|
||||||
|
# include <iomanip>
|
||||||
#else
|
#else
|
||||||
# include <fstream.h>
|
# include <fstream.h>
|
||||||
# include <iostream.h>
|
# include <iostream.h>
|
||||||
|
# include <iomanip.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(CMAKE_NO_ANSI_STRING_STREAM)
|
#if !defined(CMAKE_NO_ANSI_STRING_STREAM)
|
||||||
@ -169,6 +171,12 @@ using ::ofstream;
|
|||||||
using ::endl;
|
using ::endl;
|
||||||
using ::ends;
|
using ::ends;
|
||||||
using ::flush;
|
using ::flush;
|
||||||
|
using ::dec;
|
||||||
|
using ::hex;
|
||||||
|
using ::setw;
|
||||||
|
using ::setiosflags;
|
||||||
|
using ::setfill;
|
||||||
|
using ::setprecision;
|
||||||
}
|
}
|
||||||
// The string class is missing these operators so add them
|
// The string class is missing these operators so add them
|
||||||
#if !defined(cmsys_STL_STRING_NEQ_CHAR_DEFINED)
|
#if !defined(cmsys_STL_STRING_NEQ_CHAR_DEFINED)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user