summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Bug_2654_Regression/Hello.idl
blob: 1cd21f1773e6a7c495e64e06c8fc3d9a1830b43d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// $Id$
//

/// 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);

  };
};