diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-18 16:37:43 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-18 16:37:43 +0000 |
commit | e5e03b00789b248e8c80582f197f459fdd900e57 (patch) | |
tree | 7e876f0bb09ed451166f25271c8466042c626a05 /ace/IOStream.h | |
parent | 038789e496c30bc74619c7d73d840fd224239b34 (diff) | |
download | ATCD-e5e03b00789b248e8c80582f197f459fdd900e57.tar.gz |
#include iostream.h if ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION
Diffstat (limited to 'ace/IOStream.h')
-rw-r--r-- | ace/IOStream.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ace/IOStream.h b/ace/IOStream.h index e987367b8f4..a003946eac8 100644 --- a/ace/IOStream.h +++ b/ace/IOStream.h @@ -24,7 +24,11 @@ #include "ace/INET_Addr.h" #include "ace/Handle_Set.h" -#include "ace/stdcpp.h" +#if defined (ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION) +# include /**/ <iostream.h> +#else +# include "ace/stdcpp.h" +#endif /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION */ #if defined (ACE_HAS_STRING_CLASS) #if defined (ACE_WIN32) |