summaryrefslogtreecommitdiff
path: root/tao/Strategies/uiop_endpoints.pidl
blob: c53508edd92a1f01a30771acda11d487e31a40a7 (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
// $Id$

/**
 * This file contains idl definition for data structures used to
 * encapsulate data in TAO_TAG_ENDPOINTS tagged component.  This
 * TAO-specific component is used for transmission of multiple
 * endpoints per single profile.  Data structures defined here are
 * used for transmission of UIOP Endpoints.  See UIOP_Profile.* for
 * more details.
 *
 * This file is used to generate the code in
 * uiop_endpoints.* The command used to generate code
 * is:
 *
 * tao_idl
 *          -o orig -Gp -Gd -Sa -DCORBA3 -Sci
 *           -Wb,export_macro=TAO_Strategies_Export \
 *           -Wb,export_include="strategies_export.h" \
 *           -Wb,pre_include="ace/pre.h" \
 *           -Wb,post_include="ace/post.h" \
 *           uiop_endpoints.pidl
 */

#ifndef _UIOP_ENDPOINTS_IDL_
#define _UIOP_ENDPOINTS_IDL_

/// Stores information for a single UIOP endpoint.
struct TAO_UIOP_Endpoint_Info
{
  string rendezvous_point;
  short priority;
};

/// Stores information for a collection of UIOP endpoints.
typedef sequence <TAO_UIOP_Endpoint_Info> TAO_UIOPEndpointSequence;

#pragma prefix ""

#endif /* _UIOP_ENDPOINTS_IDL_ */