summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/Messaging_SyncScope.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/Messaging_SyncScope.pidl')
-rw-r--r--ACE/TAO/tao/Messaging_SyncScope.pidl34
1 files changed, 34 insertions, 0 deletions
diff --git a/ACE/TAO/tao/Messaging_SyncScope.pidl b/ACE/TAO/tao/Messaging_SyncScope.pidl
new file mode 100644
index 00000000000..789cd58af73
--- /dev/null
+++ b/ACE/TAO/tao/Messaging_SyncScope.pidl
@@ -0,0 +1,34 @@
+// -*- IDL -*-
+/**
+ * @file Messaging_SyncScope.pidl
+ *
+ * $Id$
+ *
+ * This file is used to generate the code in Messaging_SyncScopeC.{h,inl,cpp}
+ *
+ * The command used to generate code from this file is:
+ *
+ * tao_idl.exe
+ * -o orig -St -Sci
+ * -Wb,export_macro=TAO_Export
+ * -Wb,export_include=tao/TAO_Export.h
+ * -Wb,pre_include="ace/pre.h"
+ * -Wb,post_include="ace/post.h"
+ * Messaging_SyncScope.pidl
+ *
+ */
+#ifndef TAO_MESSAGING_SYNCSCOPE_PIDL
+#define TAO_MESSAGING_SYNCSCOPE_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;
+};
+
+#endif /* TAO_MESSAGING_SYNCSCOPE_PIDL */