summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/MT_Client_Test/MT_Client_Test.idl
blob: 4eafae95875434c04704a3deaa9aeb2c3b46a902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//=============================================================================
/**
 *  @file    MT_Client_Test.idl
 *
 *  $Id$
 *
 *  An example of how nested upcalls work/fail?
 *
 *  @author Michael Kircher
 */
//=============================================================================

interface Object_A {
  long foo (in long time);
};

interface MT_Object;

interface MT_Object
{
  long yadda (in long hop_count, in MT_Object partner);
};