summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/PI/ORBInitInfo.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/PI/ORBInitInfo.inl')
-rw-r--r--ACE/TAO/tao/PI/ORBInitInfo.inl26
1 files changed, 26 insertions, 0 deletions
diff --git a/ACE/TAO/tao/PI/ORBInitInfo.inl b/ACE/TAO/tao/PI/ORBInitInfo.inl
new file mode 100644
index 00000000000..f151fd2711d
--- /dev/null
+++ b/ACE/TAO/tao/PI/ORBInitInfo.inl
@@ -0,0 +1,26 @@
+// -*- C++ -*-
+//
+// $Id$
+
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE TAO_ORB_Core *
+TAO_ORBInitInfo::orb_core (void) const
+{
+ return this->orb_core_;
+}
+
+ACE_INLINE void
+TAO_ORBInitInfo::invalidate (void)
+{
+ this->orb_core_ = 0;
+}
+
+ACE_INLINE PortableInterceptor::SlotId
+TAO_ORBInitInfo::slot_count (void) const
+{
+ return this->slot_count_;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL