summaryrefslogtreecommitdiff
path: root/TAO/tests/POA/Bug_1592_Regression/test.idl
blob: 57b9f37c17f371af2efcdc17be857d284e4d659b (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
31
32
33
34
35
// -*- IDL -*-

//=============================================================================
/**
 * @file test.idl
 *
 * $Id$
 *
 * Simple IDL file to test  PortableInterceptor / ServantLocator
 * support.
 *
 * @author Ossama Othman <ossama@dre.vanderbilt.edu>
 */
//=============================================================================

#ifndef TEST_IDL
#define TEST_IDL

/**
 * @interface test
 *
 * @brief PortableInterceptor/ServantLocator test interface.
 *
 * Simple interface that provides an operation to invoke.
 */
interface test
{
  /// Dummy operation.
  void op ();

  /// Shutdown the server.
  oneway void shutdown ();
};

#endif  /* TEST_IDL */