summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tests/SimplexMulti/Sender/UsesSM_Sender.idl
blob: 3a13a993d903ffe3d26c5e00c5c0f83478578585 (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
// $Id$

#ifndef USESSM_SENDER_IDL
#define USESSM_SENDER_IDL

#include <Components.idl>

#include "Base/UsesSM.idl"

#pragma ciao ami4ccm receptacle "UsesSM::Sender::run_my_um_one"
#pragma ciao ami4ccm receptacle "UsesSM::Sender::run_my_two"
#pragma ciao ami4ccm receptacle "UsesSM::Sender::s_run_my_um_one"
#pragma ciao ami4ccm receptacle "UsesSM::Sender::m_run_my_two"

module UsesSM
{
  component Sender
  {
    /// For synchronous invocation
    uses multiple One run_my_um_one;
    uses Two run_my_two;
    uses One s_run_my_um_one;
    uses multiple Two m_run_my_two;
  };
};

#endif