blob: 0b3804ce93fd0c96e8e6ce3933329d0e37345a8b (
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
28
|
// -*- C++ -*-
// $Id$
ACE_INLINE
TAO_Endpoint::TAO_Endpoint (CORBA::ULong tag,
CORBA::Short priority)
: tag_ (tag),
priority_ (priority)
{
}
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;
}
|