summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/PICurrent/test.idl
blob: 6e808b2c52fbd957836f083ccb40bb2a10b2e29a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// -*- IDL -*-

//=============================================================================
/**
 * @file   test.idl
 *
 * $Id$
 *
 * Simple IDL file to test PortableInterceptor::Current
 * support.
 *
 * @author  Ossama Othman <ossama@uci.edu>
 */
//=============================================================================

module PICurrentTest
{

  interface test
  {
    void invoke_me ();

    void invoke_you ();

    oneway void shutdown ();
  };

};