summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/MT_Client_Test/MT_Client_Test.idl
blob: 6c7a121a0013af9000af4042198e2428b34dcf81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//=============================================================================
/**
 *  @file    MT_Client_Test.idl
 *
 *  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);
};