summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO.h
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-22 00:50:00 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-22 00:50:00 +0000
commit848b63fd26b71a0d53e1d5d9e18a310fdece5056 (patch)
treef658863674a9979b635a9961af822dcd796d166c /TAO/tao/TAO.h
parent97bb12eea1d8ad0c69b0339c9d91687ef07ece6d (diff)
downloadATCD-848b63fd26b71a0d53e1d5d9e18a310fdece5056.tar.gz
ChangeLogTag:Fri Aug 21 19:22:27 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
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