summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tests/IDL_Test/Hello.idl
blob: ea368e162e302cbcd39154cb66387af064ac4049 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#ifndef HELLO_IDL
#define HELLO_IDL

#pragma ciao lem "HelloE.idl"
#pragma ciao lem "HelloAE.idl"
#pragma ciao ami4ccm interface "Hello::MyFoo"
#pragma ciao ami4ccm interface "Hello::MyDerived"
#pragma ciao ami4ccm interface "Hello::MyBar"
#pragma ciao ami4ccm interface "Foo::MyFoo"
#pragma ciao ami4ccm interface "Foo::MyBar"
#pragma ciao ami4ccm interface "Bar::One"
#pragma ciao ami4ccm interface "Bar::Two"
#pragma ciao ami4ccm interface "Bar::Three"

#pragma ciao ami4ccm idl "HelloA.idl"

module Hello
{
  enum test_enum
  {
    ZERO,
    ONE,
    TWO
  };

  exception InternalError
    {
      long id;
      string error_string;
    };

  interface MyFoo
    {
      oneway void foo_oneway (in string in_str);

      long foo_return (in string in_str, out string answer)
        raises (InternalError);
      void foo_no_return (in string in_str, out string answer)
        raises (InternalError);
      void hello (out long answer)
        raises (InternalError);
      void no_answer (in string in_str)
        raises (InternalError);
      test_enum enum_return(in string in_str)
        raises (InternalError);
      void enum_no_return(in string in_str,
                          in test_enum in_test,
                          out test_enum out_test)
        raises (InternalError);

      attribute short rw_attrib
        getraises (InternalError)
        setraises (InternalError);

      readonly attribute short ro_attrib
        raises (InternalError);
    };

  interface MyDerived : MyFoo
    {
      long do_someting (in string str);
      attribute long my_attribute;
    };

  interface MyBar : MyDerived
    {
      double bar_return (in string in_str, in string answer)
        raises (InternalError);
      void bye (out long answer, out double db)
        raises (InternalError);
      attribute short rw_bar_attrib
        getraises (InternalError)
        setraises (InternalError);
      readonly attribute short ro_bar_attrib
        raises (InternalError);
    };

  interface X
    {
      void mydosomething (in string str);
    };
};

module Foo
{
  struct TestTopic
    {
      string key;
      long x;
    };

  interface MyFoo
    {
      long myop (in TestTopic topic);
    };

  interface MyBar : MyFoo
    {
      TestTopic mybarop (in string str, in long lg, out double db);
    };

};

module Bar
{
  struct TestTopic
    {
      string key;
      long x;
    };

  interface One
    {
      long myop (in TestTopic topic);
    };

  interface Two
    {
      TestTopic mybarop (in string str, in long lg, out double db);
    };

  interface Three : One, Two
    {
    };
};

#endif