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/Node.h | 85 -------------------------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 dep/include/ace/Node.h (limited to 'dep/include/ace/Node.h') diff --git a/dep/include/ace/Node.h b/dep/include/ace/Node.h deleted file mode 100644 index c2eb7a7bb3d..00000000000 --- a/dep/include/ace/Node.h +++ /dev/null @@ -1,85 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file Node.h - * - * $Id: Node.h 81624 2008-05-06 17:14:57Z wotte $ - * - * @author Doug Schmidt - */ -//============================================================================= - -#ifndef ACE_NODE_H -#define ACE_NODE_H -#include /**/ "ace/pre.h" - -#include /**/ "ace/config-all.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -ACE_BEGIN_VERSIONED_NAMESPACE_DECL - -// Forward declarations. -template class ACE_Unbounded_Set_Ex; -template class ACE_Unbounded_Set_Ex_Iterator; -template class ACE_Unbounded_Set_Ex_Const_Iterator; -template class ACE_Unbounded_Queue; -template class ACE_Unbounded_Queue_Iterator; -template class ACE_Unbounded_Queue_Const_Iterator; -template class ACE_Unbounded_Stack; -template class ACE_Unbounded_Stack_Iterator; - -/** - * @class ACE_Node - * - * @brief Implementation element in a Queue, Set, and Stack. - */ -template -class ACE_Node -{ -public: - friend class ACE_Unbounded_Queue; - friend class ACE_Unbounded_Queue_Iterator; - friend class ACE_Unbounded_Queue_Const_Iterator; - friend class ACE_Unbounded_Set_Ex; - friend class ACE_Unbounded_Set_Ex_Iterator; - friend class ACE_Unbounded_Set_Ex_Const_Iterator; - friend class ACE_Unbounded_Stack; - friend class ACE_Unbounded_Stack_Iterator; - - /// This isn't necessary, but it keeps some compilers happy. - ~ACE_Node (void); - -private: - // = Initialization methods - ACE_Node (const T &i, ACE_Node *n); - ACE_Node (ACE_Node *n = 0, int = 0); - ACE_Node (const ACE_Node &n); -private: - /// Not possible - void operator= (const ACE_Node &); - -private: - /// Pointer to next element in the list of ACE_Nodes. - ACE_Node *next_; - - /// Current value of the item in this node. - T item_; -}; - -ACE_END_VERSIONED_NAMESPACE_DECL - -#if defined (ACE_TEMPLATES_REQUIRE_SOURCE) -#include "ace/Node.cpp" -#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */ - -#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA) -#pragma implementation ("Node.cpp") -#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */ - -#include /**/ "ace/post.h" -#endif /* ACE_NODE_H */ - -- cgit v1.2.3