summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Portable_Interceptors/PICurrent/test.idl
blob: a0f4dacae13555ad75930eaf3b880b5f54c3fb2b (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
29
30
// -*- 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 ();

    void invoke_we ();

    oneway void shutdown ();
  };

};