diff options
author | bala <balanatarajan@users.noreply.github.com> | 2000-12-16 03:03:20 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2000-12-16 03:03:20 +0000 |
commit | 196f53d4a9a239c280a1ba49e761b71ff3aaa179 (patch) | |
tree | c0c44d4313e603a7655f9f6d3ea9f0e093f0f6f2 /TAO/tao/IIOP.pidl | |
parent | 27a2a0868c15580e025a109727018bd0ff46f1b1 (diff) | |
download | ATCD-196f53d4a9a239c280a1ba49e761b71ff3aaa179.tar.gz |
ChangeLogTag: Fri Dec 15 20:59:49 2000 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/IIOP.pidl')
-rw-r--r-- | TAO/tao/IIOP.pidl | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/TAO/tao/IIOP.pidl b/TAO/tao/IIOP.pidl new file mode 100644 index 00000000000..01c99db6e6c --- /dev/null +++ b/TAO/tao/IIOP.pidl @@ -0,0 +1,45 @@ +// -*- 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 + +// This is a OMG specified IDL. When IIOP modules start getting +// complicated we may want to have them here. +#pragma prefix "omg.org" + + +module IIOP +{ + struct ListenPoint + { + string host; + unsigned short port; + }; + typedef sequence<ListenPoint> ListenPointList; + struct BiDirIIOPServiceContext + { + ListenPointList listen_points; + }; +}; + + + +#pragma prefix "" + +#endif /* TAO_IIOP_PIDL */ |