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

#ifndef HELLO_SENDER_IDL
#define HELLO_SENDER_IDL

#include <Components.idl>

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

module Hello
{
  component Sender
  {
    /// For asynch invocation. @@implied
    uses AMI_MyFoo sendc_run_my_foo;

    /// For synchronous invocation
    uses MyFoo run_my_foo;
  };
};

#endif