summaryrefslogtreecommitdiff
path: root/TAO/tao/Messaging_SyncScope.pidl
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-02-27 02:55:37 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-02-27 02:55:37 +0000
commit0c94253249b1f0e90f0ba77579772b53c3588090 (patch)
treea1b9b92f40c1fa048ebea7d53cb343c688bc6fc1 /TAO/tao/Messaging_SyncScope.pidl
parente8b7aab91ff1ba11e6e76d584a67551a04476258 (diff)
downloadATCD-0c94253249b1f0e90f0ba77579772b53c3588090.tar.gz
Mon Feb 26 18:10:24 2002 Jaiganesh Balasubramanian <jai@kelvar.ece.uci.edu
Diffstat (limited to 'TAO/tao/Messaging_SyncScope.pidl')
-rw-r--r--TAO/tao/Messaging_SyncScope.pidl55
1 files changed, 55 insertions, 0 deletions
diff --git a/TAO/tao/Messaging_SyncScope.pidl b/TAO/tao/Messaging_SyncScope.pidl
new file mode 100644
index 00000000000..74e58f99853
--- /dev/null
+++ b/TAO/tao/Messaging_SyncScope.pidl
@@ -0,0 +1,55 @@
+// -*- IDL -*-
+/**
+ * @file Messaging_SyncScope.pidl
+ *
+ * $Id$
+ *
+ * This file was used to generate the code in Messaging_SyncScopeC.{h,i,cpp}
+ *
+ * The command used to generate code from this file is:
+ *
+ * tao_idl.exe
+ * -o orig -Gp -Gd -Ge 1 -Gv -DCORBA3
+ * -Wb,export_macro=TAO_Export
+ * -Wb,export_include=TAO_Export.h
+ * -Wb,pre_include="ace/pre.h"
+ * -Wb,post_include="ace/post.h"
+ * Messaging_SyncScope.pidl
+ *
+ * after the file is generated a patch must be applied:
+ *
+ * cp orig/Messaging_SyncScopeC.{h,i,cpp} .
+ * patch < diffs/Messaging_SyncScope.diff
+ *
+ * The patch eliminates cycles in the include dependencies.
+ *
+ * Note: to update the patch file after re-generating the code use:
+ *
+ * for i in Messaging_SyncScopeC.{h,i,cpp}; do
+ * diff -uBbw orig/$i $i;
+ * done > diffs/Messaging_SyncScope.diff
+ *
+ */
+#ifndef TAO_MESSAGING_SYNCSCOPE_PIDL
+#define TAO_MESSAGING_SYNCSCOPE_PIDL
+
+#include <IOP.pidl>
+
+#pragma prefix "omg.org"
+
+module Messaging
+{
+ typedef short SyncScope;
+ const SyncScope SYNC_NONE = 0;
+ const SyncScope SYNC_WITH_TRANSPORT = 1;
+ const SyncScope SYNC_WITH_SERVER = 2;
+ const SyncScope SYNC_WITH_TARGET = 3;
+
+ // = TAO specific.
+ const SyncScope SYNC_EAGER_BUFFERING = SYNC_NONE;
+ const SyncScope SYNC_DELAYED_BUFFERING = -2;
+};
+
+#pragma prefix ""
+
+#endif /* TAO_MESSAGING_SYNCSCOPE_PIDL */