summaryrefslogtreecommitdiff
path: root/TAO/tao/Endpoint.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Endpoint.i')
-rw-r--r--TAO/tao/Endpoint.i13
1 files changed, 9 insertions, 4 deletions
diff --git a/TAO/tao/Endpoint.i b/TAO/tao/Endpoint.i
index 10d7d86325b..ab570490899 100644
--- a/TAO/tao/Endpoint.i
+++ b/TAO/tao/Endpoint.i
@@ -1,14 +1,17 @@
// -*- C++ -*-
+//
// $Id$
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
ACE_INLINE
TAO_Endpoint::TAO_Endpoint (CORBA::ULong tag,
CORBA::Short priority)
: addr_lookup_lock_ ()
- // @@Would be a tragedy if the hash value of this endpoint is 0, in
- // which case this optimizaton wouldn't work. We can get around
- // that using a bool. But we don't want to increase the runtime
- // memory
+ // @@ Would be a tragedy if the hash value of this endpoint is 0, in
+ // which case this optimizaton wouldn't work. We can get around
+ // that using a bool. But we don't want to increase the runtime
+ // memory.
, hash_val_ (0)
, tag_ (tag)
, priority_ (priority)
@@ -33,3 +36,5 @@ TAO_Endpoint::priority (CORBA::Short p)
{
this->priority_ = p;
}
+
+TAO_END_VERSIONED_NAMESPACE_DECL