From e4e13c2bb8c691486ac717b206f166f33c8c531a Mon Sep 17 00:00:00 2001 From: Rat Date: Mon, 7 Jun 2010 19:35:24 +0200 Subject: removed 'dep' folder, no more needed --HG-- branch : trunk --- dep/include/ace/Unbounded_Set.h | 104 ---------------------------------------- 1 file changed, 104 deletions(-) delete mode 100644 dep/include/ace/Unbounded_Set.h (limited to 'dep/include/ace/Unbounded_Set.h') diff --git a/dep/include/ace/Unbounded_Set.h b/dep/include/ace/Unbounded_Set.h deleted file mode 100644 index 44fb84068ee..00000000000 --- a/dep/include/ace/Unbounded_Set.h +++ /dev/null @@ -1,104 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file Unbounded_Set.h - * - * $Id: Unbounded_Set.h 81642 2008-05-07 19:30:35Z shuston $ - * - * @author Douglas C. Schmidt - */ -//============================================================================= - -#ifndef ACE_UNBOUNDED_SET_H -#define ACE_UNBOUNDED_SET_H -#include /**/ "ace/pre.h" - -#include "ace/Unbounded_Set_Ex.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -ACE_BEGIN_VERSIONED_NAMESPACE_DECL - -class ACE_Allocator; - -/** - * @struct ACE_Unbounded_Set_Default_Comparator - * @brief Simple comparator that evaluates equality using == operator. - */ -template -struct ACE_Unbounded_Set_Default_Comparator -{ - bool operator() (const T&lhs, const T&rhs) const; -}; - -template -class ACE_Unbounded_Set; - -/** - * @class ACE_Unbounded_Set_Iterator - * @brief Compatibility wrapper for ACE_Unbounded_Set_Ex_Iterator. - */ -template -class ACE_Unbounded_Set_Iterator : public - ACE_Unbounded_Set_Ex_Iterator > -{ -public: - typedef ACE_Unbounded_Set_Ex_Iterator > base_type; - - // = Initialization method. - ACE_Unbounded_Set_Iterator (ACE_Unbounded_Set &s, bool end = false); - - ACE_Unbounded_Set_Iterator (const base_type &s); -}; - -/** - * @class ACE_Unbounded_Set_Const_Iterator - * @brief Compatibility wrapper for ACE_Unbounded_Set_Ex_Const_Iterator. - */ -template -class ACE_Unbounded_Set_Const_Iterator : public - ACE_Unbounded_Set_Ex_Const_Iterator > -{ -public: - - typedef ACE_Unbounded_Set_Ex_Const_Iterator > base_type; - - // = Initialization method. - ACE_Unbounded_Set_Const_Iterator (const ACE_Unbounded_Set &s, - bool end = false); - - ACE_Unbounded_Set_Const_Iterator (const base_type &s); -}; - -/** - * @class ACE_Unbounded_Set - * @brief Compatibility wrapper for ACE_Unbounded_Set_Ex. - */ -template -class ACE_Unbounded_Set : public - ACE_Unbounded_Set_Ex > -{ -public: - ACE_Unbounded_Set (ACE_Allocator *alloc = 0); -}; - -ACE_END_VERSIONED_NAMESPACE_DECL - -#if defined (__ACE_INLINE__) -#include "ace/Unbounded_Set.inl" -#endif /* __ACE_INLINE__ */ - -#if defined (ACE_TEMPLATES_REQUIRE_SOURCE) -#include "ace/Unbounded_Set.cpp" -#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */ - -#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA) -#pragma implementation ("Unbounded_Set.cpp") -#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */ - -#include /**/ "ace/post.h" -#endif /* ACE_UNBOUNDED_SET_H */ - -- cgit v1.2.3