Initial Patch of Auction House bot rev. 135
[auctionmangos.git] / dep / ACE_wrappers / ace / Unbounded_Set_Ex.inl
blob356a1f58f1db946eb230b8f128164776f9b58cf3
1 // -*- C++ -*-
2 //
3 // $Id: Unbounded_Set_Ex.inl 81624 2008-05-06 17:14:57Z wotte $
5 #include "ace/Global_Macros.h"
7 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
9 template <class T, class C> ACE_INLINE bool
10 ACE_Unbounded_Set_Ex<T,C>::is_empty (void) const
12   ACE_TRACE ("ACE_Unbounded_Set_Ex<T>::is_empty");
13   return this->head_ == this->head_->next_;
16 template <class T, class C> ACE_INLINE bool
17 ACE_Unbounded_Set_Ex<T, C>::is_full (void) const
19   ACE_TRACE ("ACE_Unbounded_Set_Ex<T>::is_full");
20   return 0; // We should implement a "node of last resort for this..."
23 ACE_END_VERSIONED_NAMESPACE_DECL