summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/DLL_ORB/Test.idl
blob: f58e6b90ec744c9e2fafbf00a4e05fd480b9ccc0 (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$
 *
 * "Test" IDL interface for the DLL_ORB test.
 *
 * @author Ossama Othman <ossama@uci.edu>
 */
//=============================================================================

/**
 * @class Test
 *
 * @brief Simple interface that supplies an operation to invoke.
 */
interface Test
{

  // Simple two-way operation to invoke so that the ORB transport
  // internals are excercised.
  void invoke_me ();

  // Shutdown the server-side ORB.
  oneway void shutdown ();

};