summaryrefslogtreecommitdiff
path: root/TAO/tao/CDR.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/CDR.h')
-rw-r--r--TAO/tao/CDR.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/CDR.h b/TAO/tao/CDR.h
index 11b32b908d9..1123d618b14 100644
--- a/TAO/tao/CDR.h
+++ b/TAO/tao/CDR.h
@@ -53,10 +53,10 @@
#include /**/ "tao/TAO_Export.h"
#include "tao/Basic_Types.h"
#include "tao/GIOP_Message_Version.h"
+#include "tao/Transport.h"
#include "ace/CDR_Stream.h"
-
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_ORB_Core;
@@ -183,7 +183,7 @@ public:
/// Set fragmented message attributes.
void message_attributes (CORBA::ULong request_id,
TAO_Stub * stub,
- int message_semantics,
+ TAO_Transport::TAO_Message_Semantics message_semantics,
ACE_Time_Value * timeout);
/// Fragmented message request ID.
@@ -193,7 +193,7 @@ public:
TAO_Stub * stub (void) const;
/// Message semantics (twoway, oneway, reply)
- int message_semantics (void) const;
+ TAO_Transport::TAO_Message_Semantics message_semantics (void) const;
/// Maximum time to wait for outgoing message to be sent.
ACE_Time_Value * timeout (void) const;
@@ -231,7 +231,7 @@ private:
/**
* @see TAO_Transport
*/
- int message_semantics_;
+ TAO_Transport::TAO_Message_Semantics message_semantics_;
/// Request/reply send timeout.
ACE_Time_Value * timeout_;