summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Naming/Naming_Utils.h
diff options
context:
space:
mode:
authormarina <marina@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-09 20:34:24 +0000
committermarina <marina@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-09 20:34:24 +0000
commit615dc5f9afcbc4e38218cdf79db5b37612492427 (patch)
tree276fcf9af036d2580cda1b43d96dd0996ae1a2f7 /TAO/orbsvcs/orbsvcs/Naming/Naming_Utils.h
parent96eddb0217fce831756e6093581da1c1d3c8b9ad (diff)
downloadATCD-615dc5f9afcbc4e38218cdf79db5b37612492427.tar.gz
changed the order of parameters to avoid breaking legacy code.
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Naming/Naming_Utils.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Naming/Naming_Utils.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Naming/Naming_Utils.h b/TAO/orbsvcs/orbsvcs/Naming/Naming_Utils.h
index 206f0a7115f..699c883ab97 100644
--- a/TAO/orbsvcs/orbsvcs/Naming/Naming_Utils.h
+++ b/TAO/orbsvcs/orbsvcs/Naming/Naming_Utils.h
@@ -48,20 +48,20 @@ public:
TAO_Naming_Server (CORBA::ORB_ptr orb,
PortableServer::POA_ptr poa,
- LPCTSTR persistence_location,
size_t context_size = ACE_DEFAULT_MAP_SIZE,
ACE_Time_Value *timeout = 0,
- int resolve_for_existing_naming_service = 1);
+ int resolve_for_existing_naming_service = 1,
+ LPCTSTR persistence_location = 0);
// Either find an existing Naming Service or creates one. Takes the
// POA under which to register the Naming Service implementation
// object.
int init (CORBA::ORB_ptr orb,
PortableServer::POA_ptr poa,
- LPCTSTR persistence_location = 0,
size_t context_size = ACE_DEFAULT_MAP_SIZE,
ACE_Time_Value *timeout = 0,
- int resolve_for_existing_naming_service = 1);
+ int resolve_for_existing_naming_service = 1,
+ LPCTSTR persistence_location = 0);
// Either find an existing Naming Service or creates one. Takes the
// POA under which to register the Naming Service implementation
// object.