summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2654_Regression/Hello.idl
blob: 10b5c220923c4da4333edd48bdded5ce8e2aa5ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// Put the interfaces in a module, to avoid global namespace pollution
module Test
{

  interface CallBack
  {
    oneway void method2 ();
  };

  /// A very simple interface
  interface Hello
  {
    void set_callback (in CallBack cb);

    oneway void method (in short count);

  };
};