summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.inl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.inl')
-rw-r--r--trunk/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.inl31
1 files changed, 31 insertions, 0 deletions
diff --git a/trunk/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.inl b/trunk/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.inl
new file mode 100644
index 00000000000..71fae93e7ba
--- /dev/null
+++ b/trunk/TAO/orbsvcs/orbsvcs/Notify/RT_Properties.inl
@@ -0,0 +1,31 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE RTCORBA::RTORB_ptr
+TAO_Notify_RT_Properties::rt_orb (void)
+{
+ return RTCORBA::RTORB::_duplicate (rt_orb_.in ());
+}
+
+ACE_INLINE void
+TAO_Notify_RT_Properties::rt_orb (RTCORBA::RTORB_ptr rt_orb)
+{
+ rt_orb_ = RTCORBA::RTORB::_duplicate (rt_orb);
+}
+
+ACE_INLINE RTCORBA::Current_ptr
+TAO_Notify_RT_Properties::current (void)
+{
+ return RTCORBA::Current::_duplicate (current_.in());
+}
+
+ACE_INLINE void
+TAO_Notify_RT_Properties::current (RTCORBA::Current_ptr current)
+{
+ current_ = RTCORBA::Current::_duplicate (current);
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL