summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport_Connector.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Transport_Connector.inl')
-rw-r--r--TAO/tao/Transport_Connector.inl25
1 files changed, 25 insertions, 0 deletions
diff --git a/TAO/tao/Transport_Connector.inl b/TAO/tao/Transport_Connector.inl
new file mode 100644
index 00000000000..64683bc6a14
--- /dev/null
+++ b/TAO/tao/Transport_Connector.inl
@@ -0,0 +1,25 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE TAO_ORB_Core *
+TAO_Connector::orb_core (void)
+{
+ return this->orb_core_;
+}
+
+ACE_INLINE void
+TAO_Connector::orb_core (TAO_ORB_Core *orb_core)
+{
+ this->orb_core_ = orb_core;
+}
+
+ACE_INLINE CORBA::ULong
+TAO_Connector::tag (void) const
+{
+ return this->tag_;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL