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

interface Test
{
  // = TITLE
  //    A simple test interface
  //
  // = DESCRIPTION
  //    This test demostrates the smart proxy feature in TAO
  //    Note that though the interface has two methods just one
  //    of them can be "smartified" if necessary, the other one
  //    simply performs the same way as would the default proxy.

  exception Oops
    {
      string reason;
    };

  short method (in short boo) raises (Oops);

  oneway void shutdown ();
};