summaryrefslogtreecommitdiff
path: root/TAO/tao/Resume_Handle.inl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit8008dd09ccf88d4edef237a184a698cac42f2952 (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/Resume_Handle.inl
parent13d6e89af439164c0ade48e6f5c3e9b3f971e8c9 (diff)
downloadATCD-8008dd09ccf88d4edef237a184a698cac42f2952.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/Resume_Handle.inl')
-rw-r--r--TAO/tao/Resume_Handle.inl40
1 files changed, 0 insertions, 40 deletions
diff --git a/TAO/tao/Resume_Handle.inl b/TAO/tao/Resume_Handle.inl
deleted file mode 100644
index e89466fd4e2..00000000000
--- a/TAO/tao/Resume_Handle.inl
+++ /dev/null
@@ -1,40 +0,0 @@
-// -*- 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