Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / Endpoint.inl
blob99e0438fd79f9da279246ab62df32127d77d627b
1 // -*- C++ -*-
2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4 ACE_INLINE
5 TAO_Endpoint::TAO_Endpoint (CORBA::ULong tag,
6                             CORBA::Short priority)
7   : addr_lookup_lock_ ()
8   // @@ Would be a tragedy if the hash value of this endpoint is 0, in
9   //    which case this optimizaton wouldn't work. We can get around
10   //    that using a bool. But we don't want to increase the runtime
11   //    memory.
12   , tag_ (tag)
13   , priority_ (priority)
18 ACE_INLINE CORBA::ULong
19 TAO_Endpoint::tag () const
21   return this->tag_;
24 ACE_INLINE CORBA::Short
25 TAO_Endpoint::priority () const
27   return this->priority_;
30 ACE_INLINE void
31 TAO_Endpoint::priority (CORBA::Short p)
33   this->priority_ = p;
36 TAO_END_VERSIONED_NAMESPACE_DECL