summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Portable_Interceptors/PolicyFactory/test.idl
blob: 0f82a951fc0c3200c57fecae182d6cc0a7e149c7 (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
// -*- IDL -*-

//=============================================================================
/**
 * @file test.idl
 *
 * $Id$
 *
 * "test" IDL interface for the PolicyFactory test.
 *
 * @author Ossama Othman <ossama@dre.vanderbilt.edu>
 */
//=============================================================================


#include "tao/Policy.pidl"

module Test
{

  // Hopefully this test policy type number doesn't conflict with any
  // other reserved PolicyTypes.
  const CORBA::PolicyType POLICY_TYPE = 3456;

  local interface Policy : CORBA::Policy
  {
    /// Returns value passed to PolicyFactory.
    readonly attribute unsigned long value;
  };

};