summaryrefslogtreecommitdiff
path: root/TAO/tao/params.i
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-06 20:51:04 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-06 20:51:04 +0000
commit51eeceefbf3631976c80eccf51f3b5d2f1325782 (patch)
treedf1f6bf0438f2e68238a0d67043ac41117a92f59 /TAO/tao/params.i
parent318eb66858ef6f76a8973bce8ae60a1ef07924f2 (diff)
downloadATCD-51eeceefbf3631976c80eccf51f3b5d2f1325782.tar.gz
inlined some functions in the class header because g++ couldn't deal with them in the .i file
Diffstat (limited to 'TAO/tao/params.i')
-rw-r--r--TAO/tao/params.i25
1 files changed, 0 insertions, 25 deletions
diff --git a/TAO/tao/params.i b/TAO/tao/params.i
index f9088ddf09d..e31f43f68fb 100644
--- a/TAO/tao/params.i
+++ b/TAO/tao/params.i
@@ -81,33 +81,8 @@ TAO_ORB_Parameters::addr (const ACE_INET_Addr &addr)
this->addr_ = 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 CORBA::String
-TAO_ORB_Parameters::name_service_ior (void)
-{
- return this->name_service_ior_;
-}
-
-ACE_INLINE void
-TAO_ORB_Parameters::name_service_port (CORBA::UShort port)
-{
- this->name_service_port_ = port;
-}
-
-ACE_INLINE CORBA::UShort
-TAO_ORB_Parameters::name_service_port (void)
-{
- return this->name_service_port_;
-}
-