summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies/On_Demand/test.idl
blob: 350c9ce76b9118da927f33fda037084f1410ff1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
interface Test
{
  // = TITLE
  //    Interface for testing this example.
  //
  // = DESCRIPTION
  //    This interface defines a simple object
  //    which has a method which can be 'smartified'
  //    to provide extra functionality.

  exception Oops
    {
      string reason;
    };

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

  oneway void shutdown ();
};