summaryrefslogtreecommitdiff
path: root/TAO/tao/Message_Semantics.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-01-30 11:58:40 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-01-30 11:58:40 +0000
commit5577f785670ffb6499ed8f35eb6d82c3c03d6b55 (patch)
tree44a65903108cc595adcd1c33269afac5063a6830 /TAO/tao/Message_Semantics.h
parentaccdce500be9b9caadbab44608ded80ecd212df2 (diff)
downloadATCD-5577f785670ffb6499ed8f35eb6d82c3c03d6b55.tar.gz
Fri Jan 30 10:57:14 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Message_Semantics.h')
-rw-r--r--TAO/tao/Message_Semantics.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/TAO/tao/Message_Semantics.h b/TAO/tao/Message_Semantics.h
new file mode 100644
index 00000000000..1a838a2966c
--- /dev/null
+++ b/TAO/tao/Message_Semantics.h
@@ -0,0 +1,37 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Message_Semantics.h
+ *
+ * $Id$
+ *
+ * @author Johnny Willemsen <jwillemsen@remedy.nl>
+ */
+//=============================================================================
+
+#ifndef TAO_MESSAGE_SEMANTICS_H
+#define TAO_MESSAGE_SEMANTICS_H
+
+#include /**/ "ace/pre.h"
+
+#include "tao/orbconf.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+enum TAO_Message_Semantics
+ {
+ TAO_ONEWAY_REQUEST = 0,
+ TAO_TWOWAY_REQUEST = 1,
+ TAO_REPLY
+ };
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_MESSAGE_SEMANTICS_H */