summaryrefslogtreecommitdiff
path: root/TAO/tao/Endpoint.i
blob: e21f3a31bbd2fb43da341ac4e1ecd464a708ea3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// -*- C++ -*-
// $Id$

ACE_INLINE
TAO_Endpoint::TAO_Endpoint (CORBA::ULong tag)
  : tag_ (tag),
    priority_ (0)
{
}

ACE_INLINE CORBA::ULong
TAO_Endpoint::tag (void) const
{
  return this->tag_;
}

ACE_INLINE CORBA::Short
TAO_Endpoint::priority (void) const
{
  return this->priority_;
}

ACE_INLINE void
TAO_Endpoint::priority (CORBA::Short p) 
{
  this->priority_ = p;
}