summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tests/InterMulti/Sender/InterMulti_Sender.idl
blob: ea17f1837648710991a4159707f57c1e67a5f2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef INTERMULTI_SENDER_IDL
#define INTERMULTI_SENDER_IDL

#include <Components.idl>

#include "Base/InterMulti.idl"

#pragma ciao ami4ccm receptacle "InterMulti::Sender::run_my_one"
#pragma ciao ami4ccm receptacle "InterMulti::Sender::run_my_two"
#pragma ciao ami4ccm receptacle "InterMulti::Sender::run_my_three"

module InterMulti
{
  component Sender
  {
    /// For synchronous invocation
    uses One run_my_one;
    uses Two run_my_two;
    uses Three run_my_three;
  };
};

#endif