summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tutorials/Hello/Hello_asm/Sender_comp/src/Hello_Sender_comp.idl
blob: 70cb4738010796b00ba76dd58ab6bb9ecefabc55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef HELLO_SENDER_IDL
#define HELLO_SENDER_IDL

#include <Components.idl>

#include "Hello_MyFoo_obj.idl"

#pragma ciao ami4ccm receptacle "Hello::Sender_comp::run_my_foo"

module Hello
{
  component Sender_comp
  {
    /// For synchronous invocation
    uses MyFoo_obj run_my_foo;
  };
};

#endif