summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/examples/Hello/Sender/Hello_Sender.idl
blob: 6af31bce82ba0a383caa6da359e92277487ea200 (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
// $Id$

#ifndef HELLO_SENDER_IDL
#define HELLO_SENDER_IDL

#include <Components.idl>

#include "Hello_Base/Hello_Base.idl"
#include "Hello_Base/HelloE.idl"
#include "Hello_Base/Hello_BaseE.idl"

module Hello_AMI
{
  component Sender
  {
    // for asynch invocation. @@implied
    uses Hello_AMI::AMI_MyFoo       run_asynch_my_foo;

    // for synchronous invocation
    uses Hello::MyFoo         run_my_foo;
  };

  home SenderHome manages Sender
  {
  };
};

#endif