summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies/Policy/test.idl
blob: 91045954780d70eda92a399dba0d92a37b9b6eae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ();
};