summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/POA/Forwarding/test.idl
blob: 6f4c8f78d99a54852cb53d9689b0aa0d7e30c62a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// $Id$

interface test
{
  long doit ();
  // Returns numbers: they are constantly increasing

  exception Cannot_Forward {};
  // Raised if object cannot be forwarded.

  void forward ()
    raises (Cannot_Forward);

  oneway void shutdown ();
};