summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/RTCORBA/RT_Transport_Descriptor.inl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tao/RTCORBA/RT_Transport_Descriptor.inl')
-rw-r--r--trunk/TAO/tao/RTCORBA/RT_Transport_Descriptor.inl24
1 files changed, 24 insertions, 0 deletions
diff --git a/trunk/TAO/tao/RTCORBA/RT_Transport_Descriptor.inl b/trunk/TAO/tao/RTCORBA/RT_Transport_Descriptor.inl
new file mode 100644
index 00000000000..3afd7b186e8
--- /dev/null
+++ b/trunk/TAO/tao/RTCORBA/RT_Transport_Descriptor.inl
@@ -0,0 +1,24 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE
+TAO_RT_Transport_Descriptor::TAO_RT_Transport_Descriptor (TAO_Endpoint *endpoint,
+ CORBA::Boolean flag)
+ : TAO_Transport_Descriptor_Interface (endpoint, flag)
+ , property_list_ (0)
+ , delete_properties_ (flag)
+{
+}
+
+ACE_INLINE void
+TAO_RT_Transport_Descriptor::insert (TAO_RT_Transport_Descriptor_Property *descriptor_property)
+{
+ descriptor_property->next_ = this->property_list_;
+
+ this->property_list_ = descriptor_property;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL