summaryrefslogtreecommitdiff
path: root/ace/streams.h
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>1999-09-21 16:16:53 +0000
committerSteve Huston <shuston@riverace.com>1999-09-21 16:16:53 +0000
commit494bf4356d7816684377815172731f3cfa91e81e (patch)
tree9c4868258bc410c2b0b5bb71dd95c9adb19a8011 /ace/streams.h
parentade0ee6236770bcb08ecd2bdcece59797e05cee6 (diff)
downloadATCD-494bf4356d7816684377815172731f3cfa91e81e.tar.gz
ChangeLogTag: Tue Sep 21 11:13:21 1999 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace/streams.h')
-rw-r--r--ace/streams.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/ace/streams.h b/ace/streams.h
index 73a6223ca10..6cb21953e81 100644
--- a/ace/streams.h
+++ b/ace/streams.h
@@ -44,6 +44,11 @@
# include /**/ <iostream.h>
# include /**/ <fstream.h>
# include /**/ <iomanip.h>
+# if defined (_MSC_VER)
+# include /**/ <strstrea.h>
+# else
+# include /**/ <strstream.h>
+# endif /* _MSC_VER */
# else
# include /**/ <iostream>
# include /**/ <fstream>
@@ -52,6 +57,7 @@
# include /**/ <streambuf>
# include /**/ <iomanip>
# include /**/ <ios>
+# include /**/ <strstream>
# endif /* ACE_USES_OLD_IOSTREAMS */
# if defined (ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB) && \
@@ -69,6 +75,9 @@
using std::ofstream;
using std::fstream;
+ using std::istrstream;
+ using std::ostrstream;
+
using std::cin;
using std::cout;
using std::cerr;