blob: 3fb590acc16b567fc1d7a18301b7a3b88ddd1224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// $Id$
#if !defined (CCM_CONTAINERREQUESTINFO_IDL)
#define CCM_CONTAINERREQUESTINFO_IDL
#include "ciao/CCM_Navigation.idl"
#include "tao/OctetSeq.pidl"
module Components
{
module ContainerPortableInterceptor
{
local interface ContainerRequestInfo
{
readonly attribute CORBA::OctetSeq origin_id;
readonly attribute CORBA::OctetSeq target_id;
readonly attribute FeatureName name;
};
};
};
#endif /* CCM_CONTAINERREQUESTINFO_IDL */
|