diff options
author | Brad King <brad.king@kitware.com> | 2005-03-26 13:19:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-03-26 13:19:36 (GMT) |
commit | 098c33c4dae7e18bed03d63c062401dcb8031c03 (patch) | |
tree | 34e0f1aa49426f54665e3e61582fe6b579ced47a /Source/kwsys/Configure.hxx.in | |
parent | 8c62539cabc5016a23e918748ea4be30b142d97e (diff) | |
download | CMake-098c33c4dae7e18bed03d63c062401dcb8031c03.zip CMake-098c33c4dae7e18bed03d63c062401dcb8031c03.tar.gz CMake-098c33c4dae7e18bed03d63c062401dcb8031c03.tar.bz2 |
ENH: Added istream and ostream operators for stl string when using old streams that do not provide them.
Diffstat (limited to 'Source/kwsys/Configure.hxx.in')
-rw-r--r-- | Source/kwsys/Configure.hxx.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/kwsys/Configure.hxx.in b/Source/kwsys/Configure.hxx.in index 1b9df6b..caf6f72 100644 --- a/Source/kwsys/Configure.hxx.in +++ b/Source/kwsys/Configure.hxx.in @@ -35,6 +35,12 @@ /* Whether STL is in std namespace. */ #define @KWSYS_NAMESPACE@_STL_HAVE_STD @KWSYS_STL_HAVE_STD@ +/* Whether the STL string has operator<< for ostream. */ +#define @KWSYS_NAMESPACE@_STL_STRING_HAVE_OSTREAM @KWSYS_STL_STRING_HAVE_OSTREAM@ + +/* Whether the STL string has operator>> for istream. */ +#define @KWSYS_NAMESPACE@_STL_STRING_HAVE_ISTREAM @KWSYS_STL_STRING_HAVE_ISTREAM@ + /* Define the stl namespace macro. */ #if @KWSYS_NAMESPACE@_STL_HAVE_STD # define @KWSYS_NAMESPACE@_stl std |