summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/PortableServer/ServantRetentionPolicy.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/PortableServer/ServantRetentionPolicy.pidl')
-rw-r--r--ACE/TAO/tao/PortableServer/ServantRetentionPolicy.pidl45
1 files changed, 45 insertions, 0 deletions
diff --git a/ACE/TAO/tao/PortableServer/ServantRetentionPolicy.pidl b/ACE/TAO/tao/PortableServer/ServantRetentionPolicy.pidl
new file mode 100644
index 00000000000..c6223d3a30e
--- /dev/null
+++ b/ACE/TAO/tao/PortableServer/ServantRetentionPolicy.pidl
@@ -0,0 +1,45 @@
+/**
+ * @file ServantRetentionPolicy.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" \
+ * ServantRetentionPolicy.pidl
+ */
+
+#ifndef _PORTABLESERVER_SERVANTRETENTIONPOLICY_IDL_
+#define _PORTABLESERVER_SERVANTRETENTIONPOLICY_IDL_
+
+#include "tao/Policy.pidl"
+
+#pragma prefix "omg.org"
+
+module PortableServer
+{
+# pragma version PortableServer 2.3
+
+ enum ServantRetentionPolicyValue
+ {
+ RETAIN,
+ NON_RETAIN
+ };
+
+#if !defined (TAO_HAS_MINIMUM_POA) && !defined (CORBA_E_COMPACT) && !defined (CORBA_E_MICRO)
+
+ local interface ServantRetentionPolicy : CORBA::Policy
+ {
+ readonly attribute ServantRetentionPolicyValue value;
+ };
+
+#endif
+
+};
+
+#endif // _PORTABLESERVER_SERVANTRETENTIONPOLICY_IDL_