summaryrefslogtreecommitdiff
path: root/TAO/tests/Nested_Upcall_Crash/Test.idl
blob: 3914ca129477e13cf13f0df3be369a90aa9c67a3 (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
/**
 * @file Test.idl
 *
 * @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_ */