Files
PolyORB/idls/Misc/Dynamic.idl
Thomas Quinot a27d4ca5ae Update PortableInterceptor to use common sequence type from
CORBA.IDL_Sequences instead of local redefinitions.

Submitted by:	Vadim Godunko
Reviewed by:	Thomas Quinot

Recomputed build dependencies.

[Imported from Perforce change 9354 at 2006-12-01 21:43:22]

Subversion-branch: /trunk/polyorb
Subversion-revision: 36854
2005-05-31 11:34:29 +00:00

31 lines
645 B
Plaintext

// File: Dynamic.idl
// CORBA 3.0, Chapter 21
#ifndef _DYNAMIC_IDL_
#define _DYNAMIC_IDL_
#ifdef _PRE_3_0_COMPILER_
#pragma prefix "omg.org"
#include <orb.idl>
#else
import ::CORBA;
#endif // _PRE_3_0_COMPILER_
module Dynamic {
#ifndef _PRE_3_0_COMPILER_
typeprefix Dynamic "omg.org";
#endif // _PRE_3_0_COMPILER_
struct Parameter {
any argument;
CORBA::ParameterMode mode;
};
typedef sequence<Parameter> ParameterList;
typedef CORBA::StringSeq ContextList;
typedef sequence<CORBA::TypeCode> ExceptionList;
typedef CORBA::StringSeq RequestContext;
}; // module Dynamic
#endif // _DYNAMIC_IDL_