diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-11-06 05:33:39 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-11-06 05:33:39 +0000 |
commit | 5f5c2cb54f4e47511ab693f6405e832218e13caf (patch) | |
tree | 773affefc80c7bd962d4b4181dc85c11a4ce91db /TAO/tao | |
parent | 73b37fa3573b2ec16f3ed5309eaddd8861cd1130 (diff) | |
download | ATCD-5f5c2cb54f4e47511ab693f6405e832218e13caf.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tao')
-rw-r--r-- | TAO/tao/orbobj.h | 1 | ||||
-rw-r--r-- | TAO/tao/params.h | 6 | ||||
-rw-r--r-- | TAO/tao/params.i | 6 |
3 files changed, 7 insertions, 6 deletions
diff --git a/TAO/tao/orbobj.h b/TAO/tao/orbobj.h index 03da4ed69ad..d4c3129b045 100644 --- a/TAO/tao/orbobj.h +++ b/TAO/tao/orbobj.h @@ -32,6 +32,7 @@ #include "tao/corba.h" #include "tao/connect.h" +#include "tao/orb.h" class ACE_Svc_Export CORBA_ORB : public IUnknown // = TITLE diff --git a/TAO/tao/params.h b/TAO/tao/params.h index 0da385c557f..bedaee54588 100644 --- a/TAO/tao/params.h +++ b/TAO/tao/params.h @@ -48,16 +48,16 @@ public: LOCAL_INLINE ~TAO_ORB_Parameters (void); // Destructor - LOCAL_INLINE void addr (ACE_INET_Addr &addr); + LOCAL_INLINE void addr (const ACE_INET_Addr &addr); // Set the address on which we're listening. LOCAL_INLINE const ACE_INET_Addr &addr (void); // Get the address on which we're listening. - LOCAL_INLINE void name_service_ior (CORBA::String &ns); + LOCAL_INLINE void name_service_ior (CORBA::String ns); // Set the IOR of our name service. - LOCAL_INLINE const CORBA::String &name_service_ior (void); + LOCAL_INLINE CORBA::String name_service_ior (void); // Get the IOR of our name service. private: diff --git a/TAO/tao/params.i b/TAO/tao/params.i index 80ffd7fc7c4..38f57ba55f2 100644 --- a/TAO/tao/params.i +++ b/TAO/tao/params.i @@ -76,7 +76,7 @@ TAO_ORB_Parameters::~TAO_ORB_Parameters (void) } ACE_INLINE void -TAO_ORB_Parameters::addr (ACE_INET_Addr &addr) +TAO_ORB_Parameters::addr (const ACE_INET_Addr &addr) { this->addr_ = addr; } @@ -88,12 +88,12 @@ TAO_ORB_Parameters::addr (void) } ACE_INLINE void -TAO_ORB_Parameters::name_service_ior (CORBA::String &ns) +TAO_ORB_Parameters::name_service_ior (CORBA::String ns) { this->name_service_ior_ = ns; } -ACE_INLINE const CORBA::String & +ACE_INLINE CORBA::String TAO_ORB_Parameters::name_service_ior (void) { return this->name_service_ior_; |