Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_2654_Regression / Hello.idl
blob10b5c220923c4da4333edd48bdded5ce8e2aa5ce
1 /// Put the interfaces in a module, to avoid global namespace pollution
2 module Test
5 interface CallBack
7 oneway void method2 ();
8 };
10 /// A very simple interface
11 interface Hello
13 void set_callback (in CallBack cb);
15 oneway void method (in short count);