diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-09 12:26:22 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-09 12:26:22 +0000 |
commit | 8bbdcc7a0c2f1dca6ebc2ee937b4e17a09752b23 (patch) | |
tree | ad76b4cf6d08237e5d3c971fc50012f139ea84fe /ace | |
parent | 864ca0a03ab1d29109efa3bd8b86130100f3434b (diff) | |
download | ATCD-8bbdcc7a0c2f1dca6ebc2ee937b4e17a09752b23.tar.gz |
#include iostream.h with ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION
Diffstat (limited to 'ace')
-rw-r--r-- | ace/IOStream.h | 4 | ||||
-rw-r--r-- | ace/Log_Msg.cpp | 4 | ||||
-rw-r--r-- | ace/Log_Record.cpp | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/ace/IOStream.h b/ace/IOStream.h index 9a6c9eba92a..8f61252e4cf 100644 --- a/ace/IOStream.h +++ b/ace/IOStream.h @@ -24,6 +24,10 @@ #include "ace/INET_Addr.h" #include "ace/Handle_Set.h" +#if defined (ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION) +# include /**/ <iostream.h> +#endif /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION */ + #if defined (ACE_HAS_STRING_CLASS) #if defined (ACE_WIN32) typedef CString ACE_IOStream_String; diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp index 7527a69d873..f542dc47efc 100644 --- a/ace/Log_Msg.cpp +++ b/ace/Log_Msg.cpp @@ -43,6 +43,10 @@ static ACE_SPIPE_Stream message_queue_; static ACE_FIFO_Send_Msg message_queue_; #endif /* ACE_WIN32 */ +#if defined (ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION) +# include /**/ <iostream.h> +#endif /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION */ + ACE_ALLOC_HOOK_DEFINE(ACE_Log_Msg) #if !defined (VXWORKS) && defined (ACE_MT_SAFE) diff --git a/ace/Log_Record.cpp b/ace/Log_Record.cpp index cb9f606327b..17e9e114fc4 100644 --- a/ace/Log_Record.cpp +++ b/ace/Log_Record.cpp @@ -4,6 +4,10 @@ #define ACE_BUILD_DLL #include "ace/Log_Record.h" +#if defined (ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION) +# include /**/ <iostream.h> +#endif /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION */ + ACE_ALLOC_HOOK_DEFINE(ACE_Log_Record) void |