blob: f1989cf7ff8a71dfba486fba3c732060b69d8140 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
//=============================================================================
/**
* @file Priority_Mapping.h
*
* $Id$
*
* Declares the Priority_Mapping interface, as defined in the
* RT-CORBA spec.
*
*
* @author Carlos O'Ryan (coryan@cs.wustl.edu)
*/
//=============================================================================
#ifndef TAO_PRIORITY_MAPPING_H
#define TAO_PRIORITY_MAPPING_H
#include "ace/pre.h"
#include "tao/orbconf.h"
#if (TAO_HAS_RT_CORBA == 1)
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/RTCORBAC.h"
/**
* @class TAO_Priority_Mapping
*
* @brief The interface for priority mapping.
*
* Check the RT-CORBA spec (orbos/99-02-12) secions 4.5.2
*/
class TAO_Export TAO_Priority_Mapping
{
public:
/// Default constructor
TAO_Priority_Mapping (void);
/// The destructor
virtual ~TAO_Priority_Mapping (void);
virtual CORBA::Boolean
to_native (RTCORBA::Priority corba_priority,
RTCORBA::NativePriority &native_priority);
virtual CORBA::Boolean
to_CORBA (RTCORBA::NativePriority native_priority,
RTCORBA::Priority &corba_priority);
};
#if defined (__ACE_INLINE__)
# include "tao/Priority_Mapping.i"
#endif /* __ACE_INLINE__ */
#endif /* TAO_HAS_RT_CORBA == 1 */
#include "ace/post.h"
#endif /* TAO_PRIORITY_MAPPING_H */
|