blob: 079a7b957ca14e96a2df1e5ba13b711a9cdd464f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
//$Id$
// ================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// GIOP1_2.pidl
//
// = DESCRIPTION
// Some new data types included for GIOP 1.2
// This file was used to generate the code in
// GIOP*.* The command used to generate code
// is:
//
// tao_idl
// -o orig -Sa -Gp -Gd -Ge 1 -GT
// -Wb,export_macro=TAO_Export
// -Wb,export_include="tao/TAO_Export.h"
// -Wb,pre_include="ace/pre.h"
// -Wb,post_include="ace/post.h"
// GIOP.pidl
//
// ================================================================
// #pragma prefix "omg.org"
#include "IOP.pidl"
#include "OctetSeq.pidl"
module GIOP
{
typedef short AddressingDisposition;
const short KeyAddr = 0;
const short ProfileAddr = 1;
const short ReferenceAddr = 2;
struct Version
{
octet major;
octet minor;
};
struct IORAddressingInfo
{
unsigned long selected_profile_index;
IOP::IOR ior;
};
union TargetAddress switch (AddressingDisposition)
{
case KeyAddr: CORBA::OctetSeq object_key;
case ProfileAddr: IOP::TaggedProfile profile;
case ReferenceAddr: IORAddressingInfo ior;
};
};
|