summaryrefslogtreecommitdiff
path: root/TAO/tao/Policy.pidl
blob: 3ea88619c24a554699f154a1beed0efc6ac9b7d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// $Id$

module CORBA
{
  typedef unsigned long PolicyType;

  interface Policy
    {
      readonly attribute PolicyType policy_type;
      Policy copy ();
      void destroy ();
    };

  typedef sequence<Policy> PolicyList;
};