Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / NestedUpcall / Triangle_Test / Triangle_Test.idl
blob4d62a86b1ca503c87a4827b52b77129d39fde28a
1 //=============================================================================
2 /**
3 * @file Triangle_Test.idl
5 * An example of how nested upcalls work/fail?
8 * @author Michael Kircher
9 */
10 //=============================================================================
14 interface Initiator {
16 oneway void foo_object_B ();
20 interface Object_A {
22 void foo (in Initiator theInitiator);
24 oneway void finish ();
26 oneway void shutdown ();
30 interface Object_B {
32 void foo (in Object_A theObject_A);
34 oneway void shutdown ();