summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Nested_Upcall_Crash/Test.idl
blob: 01ff3602659bb4f9378ea6510ea9a8b001fe61ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * @file Test.idl
 *
 * $Id$
 *
 * @author Carlos O'Ryan <coryan@atdesk.com>
 *
 */
#ifndef Test__idl_
#define Test__idl_

module Test
{
  typedef sequence<octet> Payload;
  interface Peer
  {
    oneway void callme (in Peer callback,
                        in unsigned long max_depth,
                        in Payload extra_data);

    oneway void crash();

    void noop();
  };
};

#endif /* Test__idl_ */