00001 // -*- C++ -*- 00002 // 00003 // $Id: RT_Transport_Descriptor_Property.inl 69198 2005-11-04 09:26:56Z ossama $ 00004 00005 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00006 00007 ACE_INLINE 00008 TAO_RT_Transport_Descriptor_Property::TAO_RT_Transport_Descriptor_Property (void) 00009 : next_ (0) 00010 { 00011 } 00012 00013 /*************************************************************************************************/ 00014 ACE_INLINE 00015 TAO_RT_Transport_Descriptor_Private_Connection_Property::TAO_RT_Transport_Descriptor_Private_Connection_Property (void) 00016 : object_id_ (-1) 00017 { 00018 } 00019 00020 ACE_INLINE 00021 TAO_RT_Transport_Descriptor_Private_Connection_Property::TAO_RT_Transport_Descriptor_Private_Connection_Property (long object_id) 00022 : object_id_ (object_id) 00023 { 00024 } 00025 00026 ACE_INLINE void 00027 TAO_RT_Transport_Descriptor_Private_Connection_Property::init (long object_id) 00028 { 00029 this->object_id_ = object_id; 00030 } 00031 00032 /*************************************************************************************************/ 00033 00034 ACE_INLINE 00035 TAO_RT_Transport_Descriptor_Banded_Connection_Property::TAO_RT_Transport_Descriptor_Banded_Connection_Property (void) 00036 : low_priority_ (-1) 00037 , high_priority_ (-1) 00038 { 00039 } 00040 00041 ACE_INLINE 00042 TAO_RT_Transport_Descriptor_Banded_Connection_Property::TAO_RT_Transport_Descriptor_Banded_Connection_Property (CORBA::Short low_priority, 00043 CORBA::Short high_priority) 00044 : low_priority_ (low_priority) 00045 , high_priority_ (high_priority) 00046 { 00047 } 00048 00049 ACE_INLINE void 00050 TAO_RT_Transport_Descriptor_Banded_Connection_Property::init (CORBA::Short low_priority, 00051 CORBA::Short high_priority) 00052 { 00053 this->low_priority_ = low_priority; 00054 this->high_priority_ = high_priority; 00055 } 00056 00057 TAO_END_VERSIONED_NAMESPACE_DECL