00001 /* 00002 * 00003 * 00004 * Distributed under the OpenDDS License. 00005 * See: http://www.opendds.org/license.html 00006 */ 00007 00008 OPENDDS_BEGIN_VERSIONED_NAMESPACE_DECL 00009 00010 namespace OpenDDS { 00011 namespace DCPS { 00012 00013 ACE_INLINE 00014 PriorityMapper::PriorityMapper(Priority priority) 00015 : priority_(priority) 00016 { 00017 } 00018 00019 ACE_INLINE 00020 Priority& 00021 PriorityMapper::priority() 00022 { 00023 return this->priority_; 00024 } 00025 00026 ACE_INLINE 00027 Priority 00028 PriorityMapper::priority() const 00029 { 00030 return this->priority_; 00031 } 00032 00033 } 00034 } 00035 00036 OPENDDS_END_VERSIONED_NAMESPACE_DECL