summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tests/OneProcess/Base/OneProcess.idl
blob: 63dac05ef1fe868b8f828081fb9b90803fd645df (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 ONEPROCESS_IDL
#define ONEPROCESS_IDL

#pragma ciao lem "Base/OneProcessE.idl"
#pragma ciao ami4ccm interface "OneProcess::MyFoo"
#pragma ciao lem "Base/OneProcessAE.idl"
#pragma ciao ami4ccm idl "Base/OneProcessA.idl"

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

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

#endif