summaryrefslogtreecommitdiff
path: root/TAO/tao/params.i
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-11-06 05:30:25 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-11-06 05:30:25 +0000
commit73b37fa3573b2ec16f3ed5309eaddd8861cd1130 (patch)
treeba947a712a4da52218f7310669cb3d773ad83914 /TAO/tao/params.i
parent9008585ae3414568f405e22ea439ce638bee32db (diff)
downloadATCD-73b37fa3573b2ec16f3ed5309eaddd8861cd1130.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/tao/params.i')
-rw-r--r--TAO/tao/params.i15
1 files changed, 14 insertions, 1 deletions
diff --git a/TAO/tao/params.i b/TAO/tao/params.i
index 4afd76884f7..80ffd7fc7c4 100644
--- a/TAO/tao/params.i
+++ b/TAO/tao/params.i
@@ -66,6 +66,7 @@ TAO_OA_Parameters::userdef_lookup_strategy (void)
ACE_INLINE
TAO_ORB_Parameters::TAO_ORB_Parameters (void)
+ : name_service_ior_ (0)
{
}
@@ -80,9 +81,21 @@ TAO_ORB_Parameters::addr (ACE_INET_Addr &addr)
this->addr_ = addr;
}
-ACE_INLINE ACE_INET_Addr
+ACE_INLINE const ACE_INET_Addr &
TAO_ORB_Parameters::addr (void)
{
return this->addr_;
}
+ACE_INLINE void
+TAO_ORB_Parameters::name_service_ior (CORBA::String &ns)
+{
+ this->name_service_ior_ = ns;
+}
+
+ACE_INLINE const CORBA::String &
+TAO_ORB_Parameters::name_service_ior (void)
+{
+ return this->name_service_ior_;
+}
+