summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tests/ThreeComp/Base/ThreeComp.idl
blob: 3d4d8717f3b31c29dd0af6dcf892137099b970ed (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
28
29
30
31
32
33
34
35
// $Id$

#ifndef THREECOMP_IDL
#define THREECOMP_IDL

#pragma ciao lem "Base/ThreeCompE.idl"
#pragma ciao ami4ccm interface "ThreeComp::MyFoo"
#pragma ciao ami4ccm interface "ThreeComp::State"
#pragma ciao lem "Base/ThreeCompAE.idl"
#pragma ciao ami4ccm idl "Base/ThreeCompA.idl"


module ThreeComp
{
  exception InternalError
    {
      long id;
      string error_string;
    };

  // Sender/Receiver interface
  interface MyFoo
    {
      long foo (in long cmd, out string answer)
        raises (InternalError);
    };
  // Master/Sender interface
  interface State
    {
      long bar (in long cmd, out string answer)
        raises (InternalError);
    };
};

#endif