Initial Patch of Auction House bot rev. 135
[auctionmangos.git] / dep / ACE_wrappers / ace / Recyclable.inl
blobc07d89a85054cb3687a2201e871a2b99b4e4e7e9
1 // -*- C++ -*-
2 //
3 //$Id: Recyclable.inl 80826 2008-03-04 14:51:23Z wotte $
5 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
7 ACE_INLINE ACE_Recyclable_State
8 ACE_Recyclable::recycle_state (void) const
10   return this->recycle_state_;
13 ACE_INLINE void
14 ACE_Recyclable::recycle_state (ACE_Recyclable_State new_state)
16   if (this->recycle_state_ != ACE_RECYCLABLE_CLOSED)
17     this->recycle_state_ = new_state;
20 ACE_END_VERSIONED_NAMESPACE_DECL