summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/FaultTolerance/RolyPoly/RolyPoly.idl
blob: a2d0983b253cb70bd8e7f2a2e1d1603bfa854017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// file      : RolyPoly/RolyPoly.idl
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

interface RolyPoly
{
  exception E
  {
    string s;
  };
  
  short number (inout string m) raises (E);
  
  oneway void shutdown ();
};