summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2000-12-12 01:58:48 +0000
committerbala <balanatarajan@users.noreply.github.com>2000-12-12 01:58:48 +0000
commit4c51e25e85d15fc56698aec135fd280afd112840 (patch)
tree0169d6ea0cf1d2b5f66ca7845d4a2d6f7d357f31
parent8eda5beb74bfc6488254e138bd4eb1fd05212b78 (diff)
downloadATCD-4c51e25e85d15fc56698aec135fd280afd112840.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/IIOP.pidl44
1 files changed, 44 insertions, 0 deletions
diff --git a/TAO/tao/IIOP.pidl b/TAO/tao/IIOP.pidl
new file mode 100644
index 00000000000..fc6b4c0a2d9
--- /dev/null
+++ b/TAO/tao/IIOP.pidl
@@ -0,0 +1,44 @@
+// -*- IDL -*-
+//
+// $Id$
+
+//
+// This file was used to generate the code in
+// IIOP*.* The command used to generate code
+// is:
+//
+// tao_idl \
+// -Wb,export_macro=TAO_Export \
+// -Wb,export_include="tao/TAO_Export.h" \
+// -Wb,pre_include="ace/pre.h" \
+// -Wb,post_include="ace/post.h" \
+// IIOP.pidl
+//
+// This is from the GIOP 1.2 spec for Bi Dir IIOP.
+
+#ifndef TAO_IIOP_PIDL
+#define TAO_IIOP_PIDL
+
+#pragma prefix "omg.org"
+
+
+// IDL
+module IIOP
+{
+ struct ListenPoint
+ {
+ string host;
+ unsigned short port;
+ };
+ typedef sequence<ListenPoint> ListenPointList;
+ struct BiDirIIOPServiceContext
+ {
+ ListenPointList listen_points;
+ };
+};
+
+
+
+#pragma prefix ""
+
+#endif /* TAO_IIOP_PIDL */