summaryrefslogtreecommitdiff
path: root/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-1_exec.idl.orig
blob: e0a244db6eb6f36f68c85dfbdd903af28b656c69 (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
#include <Components.idl>
#include "test-0.idl"
module M
{
  local interface CCM_I : I
  {
  };
};
module M1
{
  local interface CCM_Fool : Fool
  {
  };
  local interface CCM_C1 : ::Components::EnterpriseComponent
  {
    ::M::CCM_I get_i ();
    readonly attribute long l;
  };
  local interface CCM_C1_Context : ::Components::SessionContext
  {
  };
  local interface CCM_H1Implicit
  {
    ::Components::EnterpriseComponent create () raises (::Components::CCMException);
  };
  local interface CCM_H1Explicit : ::Components::HomeExecutorBase
  {
    attribute ::M::I i;
  };
  local interface CCM_H1 : CCM_H1Explicit, CCM_H1Implicit
  {
  };
};