diff options
author | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-19 22:04:46 +0000 |
---|---|---|
committer | doccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-19 22:04:46 +0000 |
commit | 04b9a08c7b1da0f9698fe8b3ef2dfd1f07237fa4 (patch) | |
tree | a8a811edf27f04a30be899a6faecd3ba398855f5 /TAO/tao/Dynamic.pidl | |
parent | 9a8d796e912409800b4cb0258708b7472a0dc749 (diff) | |
download | ATCD-04b9a08c7b1da0f9698fe8b3ef2dfd1f07237fa4.tar.gz |
ChangeLogTag: Thu Oct 19 14:30:59 2000 Priyanka Gontla <pgontla@ece.uci.edu>
Diffstat (limited to 'TAO/tao/Dynamic.pidl')
-rw-r--r-- | TAO/tao/Dynamic.pidl | 39 |
1 files changed, 28 insertions, 11 deletions
diff --git a/TAO/tao/Dynamic.pidl b/TAO/tao/Dynamic.pidl index 72f4266775b..171fafb4f01 100644 --- a/TAO/tao/Dynamic.pidl +++ b/TAO/tao/Dynamic.pidl @@ -1,9 +1,34 @@ -// -*- IDL -*- $Id$: +// -*- IDL -*- +// +// $Id$: + +// ================================================================ +// +// This file was used to generate the code in DynamicC.* The command +// used to generate code is: +// +// tao_idl +// -Ge 1 \ +// -DCORBA3 \ +// -Wb,export_macro=TAO_Export \ +// -Wb,export_include="tao/corbafwd.h" \ +// -Wb,pre_include="ace/pre.h" \ +// -Wb,post_include="ace/post.h" \ +// Dynamic.pidl +// +// Patches for changes to the generated code are available in the +// `diffs' directory. +// ================================================================ + + // The following is from 99-12-04 Portable Interceptors spec. // File: Dynamic.idl // Used primarily for Interceptors + +#include "orb.idl" + #ifndef _DYNAMIC_IDL_ #define _DYNAMIC_IDL_ @@ -11,11 +36,6 @@ #define local #endif -#include "orb.idl" -// necessary toget CORBA::TypeCode generated - -// @@ Kirthika, why are many types that should be under CORBA module -// are now in Dynamic module? module Dynamic { @@ -35,15 +55,12 @@ module Dynamic { typedef sequence<Parameter> ParameterList; - //typedef CORBA::StringSeq ContextList; - typedef sequence<string> ContextList; - // replaced as CORBA::StringSeq has yetto make it to TAO + typedef CORBA::StringSeq ContextList; typedef CORBA::TypeCode TypeCode; typedef sequence<TypeCode> ExceptionList; - // typedef CORBA::StringSeq RequestContext; - typedef sequence<string> RequestContext; + typedef CORBA::StringSeq RequestContext; }; #endif // _DYNAMIC_IDL_ |