summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/IdUniquenessPolicy.pidl
blob: ee9fe9a3e38215a2fe14811145b65fb721081907 (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
36
37
/**
 * @file IdUniquenessPolicy.pidl
 *
 * $Id$
 *
 * @brief PIDL source for the PortableServer module.
 */

#ifndef _PORTABLESERVER_IDUNIQUENESSPOLICY_IDL_
#define _PORTABLESERVER_IDUNIQUENESSPOLICY_IDL_

#include "tao/Policy.pidl"

#pragma prefix "omg.org"

module PortableServer
{
# pragma version PortableServer 2.3

  enum IdUniquenessPolicyValue
  {
    UNIQUE_ID,
    MULTIPLE_ID
  };

#if !defined (CORBA_E_MICRO)

  local interface IdUniquenessPolicy : CORBA::Policy
  {
    readonly attribute IdUniquenessPolicyValue value;
  };

#endif
};


#endif // _PORTABLESERVER_IDUNIQUENESSPOLICY_IDL_