summaryrefslogtreecommitdiff
path: root/TAO/tao/Invocation.h
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-10 04:11:33 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-10 04:11:33 +0000
commitd79be86eb4731d2e682a6b3702154e9458894968 (patch)
tree28b5b3f21d92637d91c2982a0479c2d0daee38e4 /TAO/tao/Invocation.h
parente088d618722288c89ce31bf13f2985a852da79b6 (diff)
downloadATCD-d79be86eb4731d2e682a6b3702154e9458894968.tar.gz
Replaced _env with TAO_IN_ENV
Diffstat (limited to 'TAO/tao/Invocation.h')
-rw-r--r--TAO/tao/Invocation.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/TAO/tao/Invocation.h b/TAO/tao/Invocation.h
index 423bae09e10..1fc0aef9fea 100644
--- a/TAO/tao/Invocation.h
+++ b/TAO/tao/Invocation.h
@@ -50,7 +50,7 @@ public:
void put_param (CORBA::TypeCode_ptr tc,
void *value,
- CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// Encodes the value into the undelying CDR stream based on the
// TypeCode parameter
@@ -60,13 +60,13 @@ public:
protected:
void start (CORBA::Boolean is_roundtrip,
TAO_GIOP::Message_Type message_type,
- CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// Locates the right Client_Connection_Handler and initializes the
// CDR stream.
// The message_type tells how to initialize the output CDR stream
TAO_GIOP_ReplyStatusType invoke (CORBA::Boolean is_roundtrip,
- CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// Sends the request, does not wait for the response.
TAO_GIOP_ReplyStatusType close_connection (void);
@@ -74,7 +74,7 @@ protected:
// we are fowarded (to the same server)
TAO_GIOP_ReplyStatusType location_forward (TAO_InputCDR &inp_stream,
- CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// do the location forwarding, which means exchanging the profile
@@ -144,17 +144,17 @@ public:
const char *operation,
TAO_ORB_Core* orb_core);
- void start (CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ void start (CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// Calls TAO_GIOP_Invocation::start.
TAO_GIOP_ReplyStatusType invoke (CORBA::ExceptionList &exceptions,
- CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// Send request, block until any reply comes back, and unmarshal
// reply parameters as appropriate.
TAO_GIOP_ReplyStatusType invoke (TAO_Exception_Data *excepts,
CORBA::ULong except_count,
- CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// Special purpose invoke method used by the interpretive stubs. This
// accomplishes the same task as the normal invoke except that
// Exceptions are allocated and decoded here. This keeps the size of
@@ -162,7 +162,7 @@ public:
void get_value (CORBA::TypeCode_ptr tc,
void *value,
- CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// No CORBA::Context support (deprecated).
TAO_InputCDR &inp_stream (void);
@@ -184,10 +184,10 @@ public:
const char *operation,
TAO_ORB_Core* orb_core);
- void start (CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ void start (CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// Call TAO_GIOP_Invocation::start()
- TAO_GIOP_ReplyStatusType invoke (CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ TAO_GIOP_ReplyStatusType invoke (CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// Send request, without blocking for any response.
};
@@ -202,10 +202,10 @@ public:
TAO_GIOP_Locate_Request_Invocation (IIOP_Object *data,
TAO_ORB_Core* orb_core);
- void start (CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ void start (CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// Calls TAO_GIOP_Invocation::start.
- TAO_GIOP_ReplyStatusType invoke (CORBA_Environment &_env = CORBA_Environment::default_environment ());
+ TAO_GIOP_ReplyStatusType invoke (CORBA_Environment &TAO_IN_ENV = CORBA_Environment::default_environment ());
// Send request, without blocking for any response.
private: