diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-16 06:23:01 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-16 06:23:01 +0000 |
commit | 90ecd99d324459ee2c9f706ebf989129a4085d4b (patch) | |
tree | b899fc9eadc83a84910f2a4864cc5a7d8bd470bd /TAO/tao/params.cpp | |
parent | 6acd9d4fda29eb7eee395d2de0b4b56a5d2d33f6 (diff) | |
download | ATCD-90ecd99d324459ee2c9f706ebf989129a4085d4b.tar.gz |
ChangeLogTag:Sun Nov 16 00:22:04 1997 Carlos O'Ryan <coryan@macarena.cs.wustl.edu>
Diffstat (limited to 'TAO/tao/params.cpp')
-rw-r--r-- | TAO/tao/params.cpp | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/TAO/tao/params.cpp b/TAO/tao/params.cpp index 47898ec1df0..c3c6c526ef9 100644 --- a/TAO/tao/params.cpp +++ b/TAO/tao/params.cpp @@ -2,7 +2,9 @@ TAO_ORB_Parameters::TAO_ORB_Parameters (void) : name_service_ior_ (0), - name_service_port_ (0) + name_service_port_ (0), + schedule_service_ior_ (0), + event_service_ior_ (0) { } @@ -41,6 +43,38 @@ TAO_ORB_Parameters::name_service_ior (void) // Get the IOR of our name service. void +TAO_ORB_Parameters::schedule_service_ior (CORBA::String s) +{ + this->schedule_service_ior_ = s; +} + +// Set the IOR of our Schedule service. + +CORBA::String +TAO_ORB_Parameters::schedule_service_ior (void) +{ + return this->schedule_service_ior_; +} + +// Get the IOR of our schedule service. + +void +TAO_ORB_Parameters::event_service_ior (CORBA::String s) +{ + this->event_service_ior_ = s; +} + +// Set the IOR of our Schedule service. + +CORBA::String +TAO_ORB_Parameters::event_service_ior (void) +{ + return this->event_service_ior_; +} + +// Get the IOR of our event service. + +void TAO_ORB_Parameters::name_service_port (CORBA::UShort port) { this->name_service_port_ = port; |