summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/TAO.h')
-rw-r--r--TAO/tao/TAO.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/TAO.h b/TAO/tao/TAO.h
index 211e0188ff0..744446bba06 100644
--- a/TAO/tao/TAO.h
+++ b/TAO/tao/TAO.h
@@ -39,27 +39,27 @@ public:
int init (int& argc,
char *argv[],
- CORBA_Environment &env);
+ CORBA_Environment &_env = CORBA_Environment::default_environment ());
// Initialize the ORB/root POA, using the supplied command line
// arguments or the default ORB components. Returns -1 on failure.
int init_child_poa (int& argc,
char *argv[],
char *poa_name,
- CORBA_Environment &env);
+ CORBA_Environment &_env = CORBA_Environment::default_environment ());
// Creates a child poa under the root poa with PERSISTENT and
// USER_ID policies. Call this if you want a <child_poa> with the
// above policies, otherwise call init. Returns -1 on failure.
CORBA::String activate (PortableServer::Servant servant,
- CORBA_Environment &env);
+ CORBA_Environment &_env = CORBA_Environment::default_environment ());
// Activate <servant>, using the POA <activate_object> call. Users
// can call this method multiple times to activate multiple objects.
// Returns 0 on failure.
CORBA::String activate_under_child_poa (const char *servant_name,
PortableServer::Servant servant,
- CORBA_Environment& env);
+ CORBA_Environment &_env = CORBA_Environment::default_environment ());
// Precondition: init_child_poa has been called. Activate <servant>
// using the POA <activate_object_with_id> created from the string
// servant_name. Users should call this to activate objects under