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

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 ();
};