summaryrefslogtreecommitdiff
path: root/TAO/tao/Priority_Mapping.cpp
blob: 7bdad39a60bd4924dd22c0f295d1fb99033d8ef2 (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
29
30
31
32
33
34
35
36
37
// $Id$

#include "tao/orbconf.h"

#if defined (TAO_HAS_RT_CORBA)

#include "tao/Priority_Mapping.h"

#if !defined (__ACE_INLINE__)
# include "tao/Priority_Mapping.i"
#endif /* ! __ACE_INLINE__ */

ACE_RCSID(tao, Priority_Mapping, "$Id$")

TAO_Priority_Mapping::TAO_Priority_Mapping (void)
{
}

TAO_Priority_Mapping::~TAO_Priority_Mapping (void)
{
}

CORBA::Boolean
TAO_Priority_Mapping::to_native (RTCORBA::Priority,
                                 RTCORBA::NativePriority &)
{
  return 0;
}

CORBA::Boolean
TAO_Priority_Mapping::to_CORBA (RTCORBA::NativePriority,
                                RTCORBA::Priority &)
{
  return 0;
}

#endif /* TAO_HAS_RT_CORBA */