summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tests/ThreeComp/Sender/ThreeComp_Sender.idl
blob: 87ce3a91444455002ddba5341ac8c6cd5314b266 (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
// $Id$

#ifndef THREECOMP_SENDER_IDL
#define THREECOMP_SENDER_IDL

#include <Components.idl>

#include "Base/ThreeComp.idl"
#include "Base/ThreeComp_no_ami.idl"

#pragma ciao ami4ccm receptacle "ThreeComp::Sender::run_my_foo"

module ThreeComp
{
  component Sender
  {
    /// For synchronous invocation
    uses multiple MyFoo run_my_foo;
    provides State  do_my_state;

    // test for no ami4ccm interface
    provides MyBar  do_my_bar;
  };
};

#endif