diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:11 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:11 +0000 |
commit | 6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch) | |
tree | da50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/LF_Follower_Auto_Ptr.inl | |
parent | 0e555b9150d38e3b3473ba325b56db2642e6352b (diff) | |
download | ATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz |
Repo restructuring
Diffstat (limited to 'TAO/tao/LF_Follower_Auto_Ptr.inl')
-rw-r--r-- | TAO/tao/LF_Follower_Auto_Ptr.inl | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/TAO/tao/LF_Follower_Auto_Ptr.inl b/TAO/tao/LF_Follower_Auto_Ptr.inl deleted file mode 100644 index 8d933799401..00000000000 --- a/TAO/tao/LF_Follower_Auto_Ptr.inl +++ /dev/null @@ -1,32 +0,0 @@ -// -*- C++ -*- -// -// $Id$ - -TAO_BEGIN_VERSIONED_NAMESPACE_DECL - -ACE_INLINE -TAO_LF_Follower_Auto_Ptr::TAO_LF_Follower_Auto_Ptr (TAO_Leader_Follower &lf) - : leader_follower_ (lf) - , follower_ (leader_follower_.allocate_follower ()) -{ -} - -ACE_INLINE TAO_LF_Follower * -TAO_LF_Follower_Auto_Ptr::get (void) -{ - return this->follower_; -} - -ACE_INLINE TAO_LF_Follower * -TAO_LF_Follower_Auto_Ptr::operator-> (void) -{ - return this->follower_; -} - -ACE_INLINE -TAO_LF_Follower_Auto_Ptr::operator TAO_LF_Follower * (void) -{ - return this->follower_; -} - -TAO_END_VERSIONED_NAMESPACE_DECL |