summaryrefslogtreecommitdiff
path: root/TAO/tao/DynamicInterface/Request.h
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-26 19:02:02 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-26 19:02:02 +0000
commit1af225868d21696a42b2b05a603b10b223ffb275 (patch)
tree8ec517625095d98a7499dd9273d5c12d43e2b94e /TAO/tao/DynamicInterface/Request.h
parentb72efeee7b3acd3b11714a68cec27f0a763fc30b (diff)
downloadATCD-1af225868d21696a42b2b05a603b10b223ffb275.tar.gz
ChangeLogTag: Mon Feb 26 12:52:48 2001 Jeff Parsons <parsons@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/DynamicInterface/Request.h')
-rw-r--r--TAO/tao/DynamicInterface/Request.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/TAO/tao/DynamicInterface/Request.h b/TAO/tao/DynamicInterface/Request.h
index bb6975e77d6..9d3740fea7a 100644
--- a/TAO/tao/DynamicInterface/Request.h
+++ b/TAO/tao/DynamicInterface/Request.h
@@ -141,6 +141,12 @@ public:
void _tao_lazy_evaluation (int lazy_evaluation);
// Set the lazy evaluation flag.
+ int _tao_byte_order (void) const;
+ // Get the byte order member.
+
+ void _tao_byte_order (int byte_order);
+ // Set the byte order member.
+
#if !defined(__GNUC__) || __GNUC__ > 2 || __GNUC_MINOR__ >= 8
typedef CORBA_Request_ptr _ptr_type;
typedef CORBA_Request_var _var_type;
@@ -212,6 +218,9 @@ private:
CORBA::Boolean response_received_;
// Set to TRUE upon completion of invoke() or
// handle_response().
+
+ int byte_order_;
+ // Can be reset by a gateway when passing along a request.
};
typedef CORBA_Request* CORBA_Request_ptr;