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 c3488e2f91f..9f532daf36e 100644
--- a/TAO/tao/CDR.h
+++ b/TAO/tao/CDR.h
@@ -242,7 +242,7 @@ public:
CORBA::TypeCode::traverse_status append (CORBA::TypeCode_ptr tc,
TAO_InputCDR *src,
- CORBA::Environment &env);
+ CORBA_Environment &_env = CORBA_Environment::default_environment ());
// Append the contents of the CDR stream based on information
// described by <tc>; returning any errors in <env>.
@@ -278,7 +278,7 @@ public:
CORBA::TypeCode::traverse_status encode (CORBA::TypeCode_ptr tc,
const void *data,
const void *,
- CORBA::Environment &env);
+ CORBA_Environment &_env = CORBA_Environment::default_environment ());
// Marshalls the contents of <data> as described by the TypeCode in
// <tc>. Any errors are reported though the <env> parameter.
@@ -480,7 +480,7 @@ public:
CORBA::TypeCode::traverse_status decode (CORBA::TypeCode_ptr tc,
const void *data,
const void *,
- CORBA::Environment &env);
+ CORBA_Environment &_env = CORBA_Environment::default_environment ());
// Demarshall the contents of the CDR stream into <data> as
// described by <tc>; returning any errors in <env>.
@@ -510,7 +510,7 @@ public:
// Return CORBA::B_FALSE on failure and CORBA::B_TRUE on success.
CORBA::TypeCode::traverse_status skip (CORBA::TypeCode_ptr tc,
- CORBA::Environment &env);
+ CORBA_Environment &_env = CORBA_Environment::default_environment ());
// Skip the contents of the CDR stream based on information
// described by <tc>; returning any errors in <env>.