diff options
Diffstat (limited to 'ace/Containers_T.i')
-rw-r--r-- | ace/Containers_T.i | 116 |
1 files changed, 0 insertions, 116 deletions
diff --git a/ace/Containers_T.i b/ace/Containers_T.i index f1835efacbe..ae123bb4f61 100644 --- a/ace/Containers_T.i +++ b/ace/Containers_T.i @@ -158,41 +158,6 @@ ACE_Unbounded_Stack<T>::size (void) const // --- -template <class T> ACE_INLINE size_t -ACE_Unbounded_Queue<T>::size (void) const -{ - return this->cur_size_; -} - -template <class T> ACE_INLINE int -ACE_Unbounded_Queue<T>::is_empty (void) const -{ - // ACE_TRACE ("ACE_Unbounded_Queue<T>::is_empty"); - return this->head_ == this->head_->next_; -} - -template <class T> ACE_INLINE int -ACE_Unbounded_Queue<T>::is_full (void) const -{ - // ACE_TRACE ("ACE_Unbounded_Queue<T>::is_full"); - return 0; // We should implement a "node of last resort for this..." -} - -// --- - -template <class T> ACE_INLINE int -ACE_Unbounded_Set<T>::is_empty (void) const -{ - ACE_TRACE ("ACE_Unbounded_Set<T>::is_empty"); - return this->head_ == this->head_->next_; -} - -template <class T> ACE_INLINE int -ACE_Unbounded_Set<T>::is_full (void) const -{ - ACE_TRACE ("ACE_Unbounded_Set<T>::is_full"); - return 0; // We should implement a "node of last resort for this..." -} // --- @@ -303,49 +268,6 @@ ACE_Ordered_MultiSet<T>::size (void) const // **************************************************************** -// Clean up the array (e.g., delete dynamically allocated memory). - -template <class T> ACE_INLINE -ACE_Array_Base<T>::~ACE_Array_Base (void) -{ - ACE_DES_ARRAY_FREE (this->array_, - this->max_size_, - this->allocator_->free, - T); -} - -template <class T> ACE_INLINE size_t -ACE_Array_Base<T>::size (void) const -{ - return this->cur_size_; -} - -template <class T> ACE_INLINE size_t -ACE_Array_Base<T>::max_size (void) const -{ - return this->max_size_; -} - -template <class T> ACE_INLINE int -ACE_Array_Base<T>::in_range (size_t index) const -{ - return index < this->cur_size_; -} - -template <class T> ACE_INLINE T & -ACE_Array_Base<T>::operator[] (size_t index) -{ - return this->array_[index]; -} - -template <class T> ACE_INLINE const T & -ACE_Array_Base<T>::operator[] (size_t index) const -{ - return this->array_[index]; -} - -// **************************************************************** - template <class T> ACE_INLINE ACE_Array<T>::ACE_Array (size_t size, ACE_Allocator *alloc) @@ -390,44 +312,6 @@ ACE_Array<T>::operator!= (const ACE_Array<T> &s) const // **************************************************************** -template <class T> ACE_INLINE void -ACE_Array_Iterator<T>::dump (void) const -{ - // ACE_TRACE ("ACE_Array_Iterator<T>::dump"); -} - -template <class T> ACE_INLINE -ACE_Array_Iterator<T>::ACE_Array_Iterator (ACE_Array_Base<T> &a) - : current_ (0), - array_ (a) -{ - // ACE_TRACE ("ACE_Array_Iterator<T>::ACE_Array_Iterator"); -} - -template <class T> ACE_INLINE int -ACE_Array_Iterator<T>::advance (void) -{ - // ACE_TRACE ("ACE_Array_Iterator<T>::advance"); - - if (this->current_ < array_.size ()) - { - ++this->current_; - return 1; - } - else - { - // Already finished iterating. - return 0; - } -} - -template <class T> ACE_INLINE int -ACE_Array_Iterator<T>::done (void) const -{ - ACE_TRACE ("ACE_Array_Iterator<T>::done"); - - return this->current_ >= array_.size (); -} // **************************************************************** |