summaryrefslogtreecommitdiff
path: root/TAO/tao/RTCORBA/Priority_Mapping.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/RTCORBA/Priority_Mapping.h')
-rw-r--r--TAO/tao/RTCORBA/Priority_Mapping.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/TAO/tao/RTCORBA/Priority_Mapping.h b/TAO/tao/RTCORBA/Priority_Mapping.h
new file mode 100644
index 00000000000..10425814b01
--- /dev/null
+++ b/TAO/tao/RTCORBA/Priority_Mapping.h
@@ -0,0 +1,61 @@
+
+//=============================================================================
+/**
+ * @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 !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#if defined (TAO_HAS_CORBA_MESSAGING) && TAO_HAS_CORBA_MESSAGING != 0
+
+#define TAO_RTCORBA_SAFE_INCLUDE
+#include "tao/RTCORBA/RTCORBAC.h"
+#undef TAO_RTCORBA_SAFE_INCLUDE
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+/**
+ * @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_RTCORBA_Export TAO_Priority_Mapping
+{
+public:
+ /// The destructor
+ virtual ~TAO_Priority_Mapping (void);
+
+ virtual CORBA::Boolean
+ to_native (RTCORBA::Priority corba_priority,
+ RTCORBA::NativePriority &native_priority) = 0;
+ virtual CORBA::Boolean
+ to_CORBA (RTCORBA::NativePriority native_priority,
+ RTCORBA::Priority &corba_priority) = 0;
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#endif /* TAO_HAS_CORBA_MESSAGING && TAO_HAS_CORBA_MESSAGING != 0 */
+
+#include /**/ "ace/post.h"
+#endif /* TAO_PRIORITY_MAPPING_H */