summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3384_Regression/Test.idl
blob: 26e3211af05919f9cf5654a8a0ea9b8828ffb734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// $Id$

module Test
{
  interface Client
  {
    oneway void reply (in string msg);
  };

  interface Server
  {
    void setup (in Client cli);

    oneway void request (in long sel);

    oneway void shutdown ();
  };

};