summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/examples/Hello/Sender/Hello_Sender.idl
blob: 1c254d15cc62ff745132e9d1cee1492e95dfddf5 (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 Hello::AMI_MyFoo sendc_run_my_foo;

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

#endif