summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/FaultTolerance/RolyPoly/RolyPoly.idl
blob: 7ab87e6d98df5487a89463da4bd4cb02e43d3c09 (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 ();
};