summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-01 01:05:07 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-01 01:05:07 +0000
commita555692daef2dfe5e2618903a27afd389960b376 (patch)
treea12cdb95b411ea78120d8678462d4227dfdc2d93
parentcc91cc745476a852deb14f49369c460a5d18b8b9 (diff)
downloadATCD-a555692daef2dfe5e2618903a27afd389960b376.tar.gz
Mon May 31 19:52:26 1999 Irfan Pyarali <irfan@cs.wustl.edu>
-rw-r--r--TAO/ChangeLog-99c36
-rw-r--r--TAO/tao/Policy.pidl6
-rw-r--r--TAO/tao/orb.idl10
3 files changed, 30 insertions, 22 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index 7bfe90e3e8d..52d964a60a8 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,11 @@
+Mon May 31 19:52:26 1999 Irfan Pyarali <irfan@cs.wustl.edu>
+
+ * tao/orb.idl: Included the Policy.pidl file in orb.idl. This
+ will bring the Policy interface into the CORBA module.
+
+ * tao/Policy.pidl: Added ending pragmas and appropriate #defines
+ for file inclusion.
+
Mon May 31 19:32:29 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* docs/releasenotes/ec.html:
@@ -79,7 +87,7 @@ Mon May 31 15:55:07 1999 Vishal Kachroo <vishal@cs.wustl.edu>
VxWorks. Replaces long int * ACE_UINT64 with ACE_UINT64 *
ACE_UINT64.
- * Removed tests/InterOp-Naming/InterOp_test.cpp as it was
+ * Removed tests/InterOp-Naming/InterOp_test.cpp as it was
obsolete.
Mon May 31 16:44:22 1999 Ossama Othman <othman@cs.wustl.edu>
@@ -103,11 +111,11 @@ Mon May 31 16:44:22 1999 Ossama Othman <othman@cs.wustl.edu>
Connector_Registry::close_all() and
Acceptor_Registry::close_all() to make sure all connectors and
acceptors are shutdown properly.
-
+
* tao/IIOP_Profile.cpp (set): Added a comment about passing in
TAO_ORB_Core as a parameter, instead of using the TAO_ORB_Core
singleton.
-
+
* tao/UIOP_Connector.cpp: Fixed pragma template instantiation that
was split between two lines without a backslash.
@@ -121,31 +129,31 @@ Mon May 31 16:44:22 1999 Ossama Othman <othman@cs.wustl.edu>
Mon May 31 15:55:07 1999 Vishal Kachroo <vishal@cs.wustl.edu>
- Converted the INS test to a stand-alone. It was previously
- working in conjunction with the bank server.The test can be used
+ Converted the INS test to a stand-alone. It was previously
+ working in conjunction with the bank server.The test can be used
to locate the Naming Service or any arbitrary service through
iioploc IORs. Added the following files :
-
+
* tests/InterOp-Naming/INS.idl: Defines a simple interface with
a single operation.
- The following files define the INS test server capable of being
+ The following files define the INS test server capable of being
located through iiopoc IORs.
- * tests/InterOp-Naming/Server_i.h:
- * tests/InterOp-Naming/Server_i.cpp:
+ * tests/InterOp-Naming/Server_i.h:
+ * tests/InterOp-Naming/Server_i.cpp:
* tests/InterOp-Naming/INS_test_server:
-
+
The following files define the servant implementation.
- * tests/InterOp-Naming/INS_i.cpp:
+ * tests/InterOp-Naming/INS_i.cpp:
* tests/InterOp-Naming/INS_i.h:
The test client :
* tests/InterOp-Naming/INS_test_client.cpp:
-
+
Changed the Makefile and README according to the above changes.
- * tests/InterOp-Naming/README:
+ * tests/InterOp-Naming/README:
* tests/InterOp-Naming/Makefile:
-
+
Mon May 31 14:50:07 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/default_resource.cpp (init_protocol_factories): This routine
diff --git a/TAO/tao/Policy.pidl b/TAO/tao/Policy.pidl
index 90362927698..f35147eb505 100644
--- a/TAO/tao/Policy.pidl
+++ b/TAO/tao/Policy.pidl
@@ -17,6 +17,8 @@
//
// ================================================================
+#ifndef TAO_CORBA_POLICY_IDL
+#define TAO_CORBA_POLICY_IDL
#pragma prefix "omg.org"
@@ -75,3 +77,7 @@ module CORBA
};
};
+
+#pragma prefix ""
+
+#endif /* TAO_CORBA_POLICY_IDL */_
diff --git a/TAO/tao/orb.idl b/TAO/tao/orb.idl
index 9d3cb2a4173..2178f05af61 100644
--- a/TAO/tao/orb.idl
+++ b/TAO/tao/orb.idl
@@ -2,15 +2,9 @@
// Included for compatibility with the CORBA 2 specification.
-#if !defined (TAO_CORBA_IDL)
+#ifndef TAO_CORBA_IDL
#define TAO_CORBA_IDL
-#pragma prefix "omg.org"
-
-module CORBA
-{
-};
-
-#pragma prefix ""
+#include <Policy.pidl>
#endif /* TAO_CORBA_IDL */