summaryrefslogtreecommitdiff
path: root/TAO/tao/params.cpp
diff options
context:
space:
mode:
authorsbw1 <sbw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-18 22:37:44 +0000
committersbw1 <sbw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-18 22:37:44 +0000
commitb3e43388711bc684fd43f08fdb48714b1892123f (patch)
treec515523e9fca13b416b4963c3ad521820556c1b1 /TAO/tao/params.cpp
parentf52efd4b0a7f2329ee7423e14d3395ddbbd785c7 (diff)
downloadATCD-b3e43388711bc684fd43f08fdb48714b1892123f.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.cpp31
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)
{