summaryrefslogtreecommitdiff
path: root/TAO/tao/params.cpp
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-30 09:46:21 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-30 09:46:21 +0000
commit3a0d64849dd0dc56cd3a4bddbc80cc6858b41bd6 (patch)
treed4bd5ad73dda37ff6a62867a5962de4d0d414713 /TAO/tao/params.cpp
parent4cc52a318e4261361d9b0563ee2113c2762b8c5c (diff)
downloadATCD-3a0d64849dd0dc56cd3a4bddbc80cc6858b41bd6.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/tao/params.cpp')
-rw-r--r--TAO/tao/params.cpp81
1 files changed, 4 insertions, 77 deletions
diff --git a/TAO/tao/params.cpp b/TAO/tao/params.cpp
index ea966ecb23f..e8d13cd443f 100644
--- a/TAO/tao/params.cpp
+++ b/TAO/tao/params.cpp
@@ -9,9 +9,11 @@
ACE_RCSID(tao, params, "$Id$")
TAO_ORB_Parameters::TAO_ORB_Parameters (void)
- : name_service_ior_ (0),
+ : addr_ (),
+ host_ (),
+ name_service_ior_ (),
name_service_port_ (0),
- trading_service_ior_ (0),
+ trading_service_ior_ (),
trading_service_port_ (0),
sock_rcvbuf_size_ (ACE_DEFAULT_MAX_SOCKET_BUFSIZ),
sock_sndbuf_size_ (ACE_DEFAULT_MAX_SOCKET_BUFSIZ),
@@ -24,78 +26,3 @@ TAO_ORB_Parameters::~TAO_ORB_Parameters (void)
{
}
-void
-TAO_ORB_Parameters::addr (const ACE_INET_Addr &addr)
-{
- this->addr_ = addr;
-}
-
-// Get the address on which we're listening.
-
-const ACE_INET_Addr &
-TAO_ORB_Parameters::addr (void)
-{
- return this->addr_;
-}
-
-void
-TAO_ORB_Parameters::name_service_ior (CORBA::String ns)
-{
- this->name_service_ior_ = ns;
-}
-
-// Set the IOR of our name service.
-
-CORBA::String
-TAO_ORB_Parameters::name_service_ior (void)
-{
- return this->name_service_ior_;
-}
-
-// Get the IOR of our name service.
-
-void
-TAO_ORB_Parameters::name_service_port (CORBA::UShort port)
-{
- this->name_service_port_ = port;
-}
-
-// Set the port of our name service.
-
-CORBA::UShort
-TAO_ORB_Parameters::name_service_port (void)
-{
- return this->name_service_port_;
-}
-
-
-void
-TAO_ORB_Parameters::trading_service_ior (CORBA::String ns)
-{
- this->trading_service_ior_ = ns;
-}
-
-// Set the IOR of our trading service.
-
-CORBA::String
-TAO_ORB_Parameters::trading_service_ior (void)
-{
- return this->trading_service_ior_;
-}
-
-// Get the IOR of our trading service.
-
-void
-TAO_ORB_Parameters::trading_service_port (CORBA::UShort port)
-{
- this->trading_service_port_ = port;
-}
-
-// Set the port of our trading service.
-
-CORBA::UShort
-TAO_ORB_Parameters::trading_service_port (void)
-{
- return this->trading_service_port_;
-}
-