summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-04-26 13:20:22 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-04-26 13:20:22 +0000
commitbde8526dc0172de3beeade41fec80e1109777fee (patch)
treeeb7474e0032001beec171f0884af2dbb8d7670c0
parent30004f2c6f2c50eebd3f742fd06a528f48f62448 (diff)
downloadATCD-bde8526dc0172de3beeade41fec80e1109777fee.tar.gz
ChangeLogTag: Thu Apr 26 08:14:20 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a10
-rw-r--r--TAO/tests/Big_Request_Muxing/Client_Task.cpp1
-rw-r--r--TAO/tests/Big_Request_Muxing/client.cpp1
3 files changed, 12 insertions, 0 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 61ccfe6d5c9..52a5d9a49b7 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,13 @@
+Thu Apr 26 08:14:20 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Big_Request_Muxing/Client_Task.cpp:
+ * tests/Big_Request_Muxing/client.cpp: Added a missing include
+ "tao/Messaging.h" so that the file would compile when
+ interceptors are turned off. This is part of the requirement for
+ writing TAO applications, which should include all the namespace
+ files implicitly or explicitly.
+
+
Thu Apr 26 08:06:30 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/Single_Read/Makefile: Made sure that the test builds even
diff --git a/TAO/tests/Big_Request_Muxing/Client_Task.cpp b/TAO/tests/Big_Request_Muxing/Client_Task.cpp
index 0ce80749e44..d2c9fa88990 100644
--- a/TAO/tests/Big_Request_Muxing/Client_Task.cpp
+++ b/TAO/tests/Big_Request_Muxing/Client_Task.cpp
@@ -3,6 +3,7 @@
//
#include "Client_Task.h"
+#include "tao/Messaging.h"
ACE_RCSID(Big_Request_Muxing, Client_Task, "$Id$")
diff --git a/TAO/tests/Big_Request_Muxing/client.cpp b/TAO/tests/Big_Request_Muxing/client.cpp
index 38a06a91e97..d6c0682c6eb 100644
--- a/TAO/tests/Big_Request_Muxing/client.cpp
+++ b/TAO/tests/Big_Request_Muxing/client.cpp
@@ -2,6 +2,7 @@
#include "Client_Task.h"
#include "ace/Get_Opt.h"
+#include "tao/Messaging.h"
ACE_RCSID(Muxing, client, "$Id$")