summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/Forwarding/Foo.idl
blob: 533c3e164eebb897a6384979468ff5ceefb3cb49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

interface Foo
{    
  // = TITLE
  //   Dummy object, doit just reports number, 
  //   do not expect any sense. They are constantly increasing

  long doit ();

  // Raised if it cannot be forwarded
  exception Cannot_Forward {};

  void forward ()
    raises (Cannot_Forward);

  void shutdown ();
};