summaryrefslogtreecommitdiff
path: root/TAO/tao/Priority_Mapping.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Priority_Mapping.h')
-rw-r--r--TAO/tao/Priority_Mapping.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/TAO/tao/Priority_Mapping.h b/TAO/tao/Priority_Mapping.h
deleted file mode 100644
index 141cceeae0b..00000000000
--- a/TAO/tao/Priority_Mapping.h
+++ /dev/null
@@ -1,63 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// Priority_Mapping.h
-//
-// = DESCRIPTION
-// 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 "tao/orbconf.h"
-
-#if defined (TAO_HAS_RT_CORBA)
-
-#include "tao/rtcorbafwd.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-class TAO_Export TAO_Priority_Mapping
-{
- //
- // = TITLE
- // The interface for priority mapping.
- //
- // = DESCRIPTION
- // Check the RT-CORBA spec (orbos/99-02-12) secions 4.5.2
- //
-public:
- TAO_Priority_Mapping (void);
- // Default constructor
-
- virtual ~TAO_Priority_Mapping (void);
- // The destructor
-
- 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 */
-
-#endif /* TAO_PRIORITY_MAPPING_H */