summaryrefslogtreecommitdiff
path: root/TAO/tao/Domain.pidl
blob: 1e413c6bed10ef2bdd4f85ed8e7a9198885ebd04 (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
38
39
40
41
42
43
44
45
46
// $Id$
//
// ================================================================
//
// = LIBRARY
//   TAO
//
// = FILENAME
//   Domain.pidl
//
// = DESCRIPTION
//   This file was used to generate the code in Domain{C,S,S_T}.{h,i,cpp}
//   The code is then hand-crafted to compile it inside the ORB, avoid
//   cyclic dependencies and enforce the locality constraints on
//   certain objects.
//
// ================================================================

#if !defined POLICY_DOMAIN_IDL
#define POLICY_DOMAIN_IDL

#pragma prefix "omg.org"

#include "Policy.pidl"

module CORBA
{
  interface DomainManager
  {
    Policy get_domain_policy (
      in PolicyType policy_type);
  };

  const PolicyType SecConstruction = 11;

  interface ConstructionPolicy : Policy
  {
    void make_domain_manager (
      in InterfaceDef object_type,
      in boolean constr_policy);
  };

  typedef sequence <DomainManager> DomainManagerList;
};

#endif /* !defined POLICY_DOMAIN_IDL */