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