summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/ami4ccm/examples/Hello_Base/Hello.idl
blob: 9b71378fbae74da2e66bbda7b4257e147446df2a (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
// $Id$

module CCM_AMI
{
  struct InternalException
    {
      long id;
      string error_string;
    };

  exception InternalError
    {
      InternalException ex;
    };

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

  interface MyInterface
    {
      float do_something_with_something (in short something)
          raises (InternalError);
    };
};