summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-04 03:34:05 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-04 03:34:05 +0000
commitf05117ab230744b91e53fedd0f8f00cd2f167e88 (patch)
tree6a77ae77050cd4b44fe36b36119b3b4e8d8021b8
parent4e3795869578ddc0c98852070cfbe5ee8facb345 (diff)
downloadATCD-f05117ab230744b91e53fedd0f8f00cd2f167e88.tar.gz
added ACE_HAS_MINIMUM_STREAMH_INCLUSION support
-rw-r--r--ace/stdstreams.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/ace/stdstreams.h b/ace/stdstreams.h
new file mode 100644
index 00000000000..48b8c2ac6f0
--- /dev/null
+++ b/ace/stdstreams.h
@@ -0,0 +1,30 @@
+/* -*- C++ -*- */
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// ace
+//
+// = FILENAME
+// stdstreams.h
+//
+// = AUTHOR
+// David L. Levine
+//
+// = DESCRIPTION
+// Wrapper for streams library #includes. For use by application code
+// when they want to #include iostream, fstream, etc.
+//
+// ============================================================================
+
+#if !defined (ACE_STDSTREAMS_H)
+#define ACE_STDSTREAMS_H
+
+#if defined (ACE_HAS_MINIMUM_STREAMH_INCLUSION)
+# undef ACE_HAS_MINIMUM_STREAMH_INCLUSION
+#endif /* ACE_HAS_MINIMUM_STREAMH_INCLUSION */
+
+#include "ace/stdcpp.h"
+
+#endif /* ACE_STDSTREAMS_H */