summaryrefslogtreecommitdiff
path: root/TAO/tests/Native_Exceptions/test.idl
blob: 9ee5a4429850682f092e6ad10e09c0c0403e6561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//
// $Id$
//

interface Simple_Server
{
  long test_method (in long x);

  exception Failure {};
  long test_raise (in long x) raises (Failure);

  oneway void shutdown ();
};