diff options
author | sbw1 <sbw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-18 22:37:44 +0000 |
---|---|---|
committer | sbw1 <sbw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-18 22:37:44 +0000 |
commit | b9c36bbd4bf5c490ed99a4a9adedc5b89fc79075 (patch) | |
tree | c515523e9fca13b416b4963c3ad521820556c1b1 /TAO/tao/params.cpp | |
parent | 8c76c1eb9f6c12d81593fd3bd4b99813e3687728 (diff) | |
download | ATCD-b9c36bbd4bf5c490ed99a4a9adedc5b89fc79075.tar.gz |
Extended the resolve initial references to include the trading service.
Diffstat (limited to 'TAO/tao/params.cpp')
-rw-r--r-- | TAO/tao/params.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/TAO/tao/params.cpp b/TAO/tao/params.cpp index 2646f21e92c..2f1eea5dd06 100644 --- a/TAO/tao/params.cpp +++ b/TAO/tao/params.cpp @@ -56,6 +56,37 @@ 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_; +} + void TAO_OA_Parameters::demux_strategy (const char* strategy) { |