Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / ForwardRequest / test.idl
blob53c79f9b51656a19b3c72775aff3dfd0537fc4a7
1 // -*- IDL -*-
3 //=============================================================================
4 /**
5 * @file test.idl
7 * Simple IDL file to test PortableInterceptor::ForwardRequest
8 * support.
10 * @author Ossama Othman <ossama@uci.edu>
12 //=============================================================================
14 #include "tao/PI_Server/PI_Server_include.pidl"
16 module ForwardRequestTest
19 interface test
21 /// Return the number assigned to the current object. For
22 /// example, object one will return "1," and object two will
23 /// return "2."
24 short number ();
26 oneway void shutdown ();
29 local interface ServerRequestInterceptor
30 : PortableInterceptor::ServerRequestInterceptor
33 /// Set the references to which requests will be forwarded.
34 void forward_references (in Object obj1,
35 in Object obj2);