summaryrefslogtreecommitdiff
path: root/TAO/tests/POA/Forwarding/test.idl
blob: 3a6c4ee76b3f8900731fc5e12f03a657ab44ce1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 ();
};