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.h | |
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.h')
-rw-r--r-- | TAO/tao/params.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/TAO/tao/params.h b/TAO/tao/params.h index 83575093538..e12277c3ed3 100644 --- a/TAO/tao/params.h +++ b/TAO/tao/params.h @@ -65,6 +65,20 @@ public: CORBA::UShort name_service_port (void); // Get the port of our name service. + // @@ TODO: This shouldn't be needed, they were added until the + // Naming Service works correctly. + CORBA::String schedule_service_ior (void); + // Get the IOR of the + + void schedule_service_ior (CORBA::String ns); + // Set the IOR of our schedule service. + + CORBA::String event_service_ior (void); + // Get the IOR of the event service + + void event_service_ior (CORBA::String ns); + // Set the IOR of our event service. + private: ACE_INET_Addr addr_; // host + port number we are listening on @@ -74,6 +88,12 @@ private: CORBA::UShort name_service_port_; // The port number of our configured Naming Service. + + CORBA::String schedule_service_ior_; + // The IOR of our configured Scheduling Service. + + CORBA::String event_service_ior_; + // The IOR of our configured Event Service. }; typedef enum |