Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Bug_2084_Regression / Test.idl
blob282c1fca6d904eb631f383d02abcddf21a69f540
2 /// Put the interfaces in a module, to avoid global namespace pollution
3 module Test
5 // Use "long long" to support platforms with 64-bit thread IDs.
6 typedef long long ThreadId;
8 /// A very simple interface
9 interface Hello
11 /// Return a simple string
12 string get_string (in ThreadId caller_threadid);
14 /// A method to shutdown the ORB
15 /**
16 * This method is used to simplify the test shutdown process
18 oneway void shutdown ();
21 /// The server side
22 interface EventNode
24 void registerHello (in Hello h);
25 oneway void shutdown ();