Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / POA / Bug_1592_Regression / test.idl
blob3a7a4a293c73fc9f7eda53462d508ff74e9dc6cc
1 // -*- IDL -*-
3 //=============================================================================
4 /**
5 * @file test.idl
7 * Simple IDL file to test PortableInterceptor / ServantLocator
8 * support.
10 * @author Ossama Othman <ossama@dre.vanderbilt.edu>
12 //=============================================================================
14 #ifndef TEST_IDL
15 #define TEST_IDL
17 /**
18 * @interface test
20 * @brief PortableInterceptor/ServantLocator test interface.
22 * Simple interface that provides an operation to invoke.
24 interface test
26 /// Dummy operation.
27 void op ();
29 /// Shutdown the server.
30 oneway void shutdown ();
33 #endif /* TEST_IDL */