summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport_Descriptor_Interface.inl
diff options
context:
space:
mode:
authoroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-17 00:53:51 +0000
committeroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-17 00:53:51 +0000
commit4d17a14b71a4cbcc0edde54c00772b3a3bdce55e (patch)
treec67ee2b9dad64ae3ea6e9b418a7fcd3300e5b771 /TAO/tao/Transport_Descriptor_Interface.inl
parent328d5e3ba10ab70711af60dbd3413791372806b6 (diff)
downloadATCD-4d17a14b71a4cbcc0edde54c00772b3a3bdce55e.tar.gz
ChangeLogTag: Fri Mar 16 18:25:54 2001 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tao/Transport_Descriptor_Interface.inl')
-rw-r--r--TAO/tao/Transport_Descriptor_Interface.inl34
1 files changed, 34 insertions, 0 deletions
diff --git a/TAO/tao/Transport_Descriptor_Interface.inl b/TAO/tao/Transport_Descriptor_Interface.inl
new file mode 100644
index 00000000000..97bcf5291f4
--- /dev/null
+++ b/TAO/tao/Transport_Descriptor_Interface.inl
@@ -0,0 +1,34 @@
+//$Id$
+
+ACE_INLINE
+TAO_Transport_Descriptor_Interface::
+ TAO_Transport_Descriptor_Interface (TAO_Endpoint *endpoint,
+ CORBA::Boolean flag)
+ : endpoint_ (endpoint),
+ bidir_flag_ (0),
+ endpoint_from_heap_ (flag)
+{
+}
+
+ACE_INLINE
+TAO_Transport_Descriptor_Interface::
+ TAO_Transport_Descriptor_Interface (void)
+ : endpoint_ (0),
+ bidir_flag_ (0),
+ endpoint_from_heap_ (0)
+{
+}
+
+
+ACE_INLINE TAO_Endpoint *
+TAO_Transport_Descriptor_Interface::endpoint (void)
+{
+ return this->endpoint_;
+}
+
+
+ACE_INLINE void
+TAO_Transport_Descriptor_Interface::set_bidir_flag (CORBA::Boolean flag)
+{
+ this->bidir_flag_ = flag;
+}