summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-04 10:10:22 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-04 10:10:22 +0000
commit5c22f3f8c49197d2fae2643f58102324d411ea30 (patch)
tree4542feaeb5746b43a65e7d1695725ad8600b7523
parentca174af8a44cfb38ccfaf84b636733fece06151a (diff)
downloadATCD-5c22f3f8c49197d2fae2643f58102324d411ea30.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98a24
-rw-r--r--examples/Log_Msg/test_log_msg.cpp1
-rw-r--r--examples/Reactor/Misc/test_time_value.cpp3
-rw-r--r--examples/Threads/task_three.cpp2
-rw-r--r--netsvcs/lib/Logging_Strategy.cpp1
5 files changed, 29 insertions, 2 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a
index 32863928385..29e9cb6c4bb 100644
--- a/ChangeLog-98a
+++ b/ChangeLog-98a
@@ -1,3 +1,27 @@
+Thu Dec 04 03:46:04 1997 <irfan@TWOSTEP>
+
+ * ace/OS.h: Removed stdcpp.h. Moved the standard C library
+ includes from stdcpp.h to OS.h. Also added ace/iosfwd.h to give
+ forward declaration for the stream classes.
+
+ * ace/IOStream_T.cpp: Reorganized include files so that inclusion
+ of config.h is not necessary.
+
+ * ace/IOStream_T.h (stdcpp.h): Removed inclusion of stdcpp.h. It
+ is redundant because IOStream.h includes it.
+
+ * ace/IOStream.cpp: Changed inclusion of config.h to OS.h.
+
+ * ace/Makefile (Svc_Conf_l.cpp): Changed the sed macros to produce
+ OS.h include instead of stdcpp.h.
+
+ * ACE: Added explicit inclusion of ace/streams.h to the following
+ files:
+
+ IOStream.cpp
+ Log_Record.cpp
+ OS.cpp
+
Thu Dec 4 00:26:46 1997 Douglas C. Schmidt <schmidt@flamenco.cs.wustl.edu>
* netsvcs/lib/Client_Logging_Handler: Changed "rendezvous" to
diff --git a/examples/Log_Msg/test_log_msg.cpp b/examples/Log_Msg/test_log_msg.cpp
index 7beef0e345d..e10614392bb 100644
--- a/examples/Log_Msg/test_log_msg.cpp
+++ b/examples/Log_Msg/test_log_msg.cpp
@@ -19,6 +19,7 @@
#include "ace/OS.h"
+#include "ace/streams.h"
static void
cleanup (void)
diff --git a/examples/Reactor/Misc/test_time_value.cpp b/examples/Reactor/Misc/test_time_value.cpp
index 34d41713bb5..2e6253ca680 100644
--- a/examples/Reactor/Misc/test_time_value.cpp
+++ b/examples/Reactor/Misc/test_time_value.cpp
@@ -1,6 +1,7 @@
// $Id$
-#include "ace/ACE.h"
+#include "ace/OS.h"
+#include "ace/streams.h"
inline int my_abs (int d) { return d > 0 ? d : -d; }
diff --git a/examples/Threads/task_three.cpp b/examples/Threads/task_three.cpp
index c0d7ca3c516..c84107b3145 100644
--- a/examples/Threads/task_three.cpp
+++ b/examples/Threads/task_three.cpp
@@ -15,7 +15,7 @@
#include "ace/Reactor.h"
#include "ace/Service_Config.h"
#include "ace/Task.h"
-#include "ace/stdcpp.h"
+#include "ace/streams.h"
#if defined (ACE_HAS_THREADS)
diff --git a/netsvcs/lib/Logging_Strategy.cpp b/netsvcs/lib/Logging_Strategy.cpp
index f0170c244ac..df940115474 100644
--- a/netsvcs/lib/Logging_Strategy.cpp
+++ b/netsvcs/lib/Logging_Strategy.cpp
@@ -3,6 +3,7 @@
#define ACE_BUILD_SVC_DLL
#include "ace/Get_Opt.h"
+#include "ace/streams.h"
#include "Logging_Strategy.h"
// Parse the string containing all the flags and set the flags accordingly