summaryrefslogtreecommitdiff
path: root/TAO/tao/Pluggable.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Pluggable.i')
-rw-r--r--TAO/tao/Pluggable.i29
1 files changed, 29 insertions, 0 deletions
diff --git a/TAO/tao/Pluggable.i b/TAO/tao/Pluggable.i
new file mode 100644
index 00000000000..a3fe15fa9a1
--- /dev/null
+++ b/TAO/tao/Pluggable.i
@@ -0,0 +1,29 @@
+// -*- C++ -*-
+// $Id$
+
+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_;
+}
+
+// ****************************************************************
+
+ACE_INLINE CORBA::ULong
+TAO_Acceptor::tag (void) const
+{
+ return this->tag_;
+}