Merge pull request #1710 from likema/cfg-assign-not-null-str
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / Collocated / Dynamic / test.idl
blobe70ab7c5a0afe2595a5d9cec0f5448f3e6a0215e
2 //=============================================================================
3 /**
4 * @file test.idl
6 * Simple IDL file to test portable interceptor support.
9 * @author Nanbor Wang <nanbor@cs.wustl.edu>
11 //=============================================================================
14 module Test_Interceptors
16 exception Silly
17 {};
19 interface Visual
21 /// Normal operation.
22 void normal (in long arg);
24 /// Normal operation with a return val.
25 long calculate (in long one, in long two);
27 /// throws a user exception.
28 void user ()
29 raises (Silly);
31 /// throws a system exception.
32 void system ();
34 /// shutdown the ORB
35 oneway void shutdown ();