summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/IdUniquenessPolicy.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/IdUniquenessPolicy.pidl')
-rw-r--r--TAO/tao/PortableServer/IdUniquenessPolicy.pidl37
1 files changed, 37 insertions, 0 deletions
diff --git a/TAO/tao/PortableServer/IdUniquenessPolicy.pidl b/TAO/tao/PortableServer/IdUniquenessPolicy.pidl
new file mode 100644
index 00000000000..ee9fe9a3e38
--- /dev/null
+++ b/TAO/tao/PortableServer/IdUniquenessPolicy.pidl
@@ -0,0 +1,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_