summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/PortableServer/RequestProcessingPolicy.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/PortableServer/RequestProcessingPolicy.pidl')
-rw-r--r--ACE/TAO/tao/PortableServer/RequestProcessingPolicy.pidl46
1 files changed, 46 insertions, 0 deletions
diff --git a/ACE/TAO/tao/PortableServer/RequestProcessingPolicy.pidl b/ACE/TAO/tao/PortableServer/RequestProcessingPolicy.pidl
new file mode 100644
index 00000000000..9edff2ec46e
--- /dev/null
+++ b/ACE/TAO/tao/PortableServer/RequestProcessingPolicy.pidl
@@ -0,0 +1,46 @@
+/**
+ * @file RequestProcessingPolicy.pidl
+ *
+ * $Id$
+ *
+ * @brief Pre-compiled IDL source for the PortableServer module.
+ *
+ * tao_idl.exe \
+ * -o orig -Gp -Gd -Sci -GA -I$(TAO_ROOT)
+ * -Wb,export_macro=TAO_PortableServer_Export \
+ * -Wb,export_include="portableserver_export.h" \
+ * -Wb,pre_include="ace/pre.h" \
+ * -Wb,post_include="ace/post.h" \
+ * RequestProcessingPolicy.pidl
+ */
+
+#ifndef _PORTABLESERVER_REQUESTPROCESSINGPOLICY_IDL_
+#define _PORTABLESERVER_REQUESTPROCESSINGPOLICY_IDL_
+
+#include "tao/Policy.pidl"
+
+#pragma prefix "omg.org"
+
+module PortableServer
+{
+# pragma version PortableServer 2.3
+
+ enum RequestProcessingPolicyValue
+ {
+ USE_ACTIVE_OBJECT_MAP_ONLY,
+ USE_DEFAULT_SERVANT,
+ USE_SERVANT_MANAGER
+ };
+
+#if !defined (CORBA_E_COMPACT) && !defined (CORBA_E_MICRO) && !defined (TAO_HAS_MINIMUM_POA)
+
+ local interface RequestProcessingPolicy : CORBA::Policy
+ {
+ readonly attribute RequestProcessingPolicyValue value;
+ };
+
+#endif
+
+};
+
+#endif // _PORTABLESERVER_REQUESTPROCESSINGPOLICY_IDL_