Files
azerothcore-wotlk/deps/acelite/ace/Unbounded_Set_Ex.inl
Yehonal f06f32849f Directory Structure [step 1]: moving files
working on #672

NOTE: This commit can't be compiled!!
2017-10-12 20:00:52 +02:00

21 lines
528 B
C++

// -*- C++ -*-
#include "ace/Global_Macros.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
template <class T, class C> ACE_INLINE bool
ACE_Unbounded_Set_Ex<T,C>::is_empty (void) const
{
ACE_TRACE ("ACE_Unbounded_Set_Ex<T>::is_empty");
return this->head_ == this->head_->next_;
}
template <class T, class C> ACE_INLINE bool
ACE_Unbounded_Set_Ex<T, C>::is_full (void) const
{
ACE_TRACE ("ACE_Unbounded_Set_Ex<T>::is_full");
return 0; // We should implement a "node of last resort for this..."
}
ACE_END_VERSIONED_NAMESPACE_DECL