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

#pragma ciao lem "Base/OneProcessE.idl"
#pragma ciao ami4ccm interface "OneProcess::MyFoo"
#pragma ciao lem "Base/OneProcessAE.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