summaryrefslogtreecommitdiff
path: root/TAO/tao/Resume_Handle.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Resume_Handle.inl')
-rw-r--r--TAO/tao/Resume_Handle.inl40
1 files changed, 40 insertions, 0 deletions
diff --git a/TAO/tao/Resume_Handle.inl b/TAO/tao/Resume_Handle.inl
new file mode 100644
index 00000000000..e89466fd4e2
--- /dev/null
+++ b/TAO/tao/Resume_Handle.inl
@@ -0,0 +1,40 @@
+// -*- C++ -*-
+//
+//$Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE
+TAO_Resume_Handle::TAO_Resume_Handle (TAO_ORB_Core *orb_core,
+ ACE_HANDLE h)
+ : orb_core_ (orb_core),
+ handle_ (h),
+ flag_ (TAO_HANDLE_RESUMABLE)
+{
+}
+
+ACE_INLINE
+TAO_Resume_Handle::~TAO_Resume_Handle (void)
+{
+ if (this->flag_ == TAO_HANDLE_RESUMABLE)
+ this->resume_handle ();
+}
+
+
+ACE_INLINE void
+TAO_Resume_Handle::set_flag (TAO_Handle_Resume_Flag fl)
+{
+ this->flag_ = fl;
+}
+
+ACE_INLINE TAO_Resume_Handle &
+TAO_Resume_Handle::operator= (const TAO_Resume_Handle &rhs)
+{
+ this->orb_core_ = rhs.orb_core_;
+ this->handle_ = rhs.handle_;
+ this->flag_ = rhs.flag_;
+
+ return *this;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL