summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_QOS_Info.inl
blob: eab42f031bc682c6f62ee4c2047343178b29f528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_INLINE
TAO_EC_QOS_Info::TAO_EC_QOS_Info (void)
  :  rt_info (-1),
     preemption_priority (0),
     timer_id_ (-1)
{
}

ACE_INLINE
TAO_EC_QOS_Info::TAO_EC_QOS_Info (const TAO_EC_QOS_Info &rhs)
  :  rt_info (rhs.rt_info),
     preemption_priority (rhs.preemption_priority),
     timer_id_ (rhs.timer_id_)
{
}

TAO_END_VERSIONED_NAMESPACE_DECL