aboutsummaryrefslogtreecommitdiff
path: root/dep/ACE_wrappers/ace/Containers.h
diff options
context:
space:
mode:
Diffstat (limited to 'dep/ACE_wrappers/ace/Containers.h')
-rw-r--r--dep/ACE_wrappers/ace/Containers.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/dep/ACE_wrappers/ace/Containers.h b/dep/ACE_wrappers/ace/Containers.h
index 211f0cda68e..f6f1d35bb60 100644
--- a/dep/ACE_wrappers/ace/Containers.h
+++ b/dep/ACE_wrappers/ace/Containers.h
@@ -1,4 +1,5 @@
// -*- C++ -*-
+
//=============================================================================
/**
* @file Containers.h
@@ -8,18 +9,25 @@
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//=============================================================================
+
#ifndef ACE_CONTAINERS_H
#define ACE_CONTAINERS_H
+
#include /**/ "ace/pre.h"
+
#include /**/ "ace/ACE_export.h"
+
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
template <class T> class ACE_Double_Linked_List;
template <class T> class ACE_Double_Linked_List_Iterator_Base;
template <class T> class ACE_Double_Linked_List_Iterator;
template <class T> class ACE_Double_Linked_List_Reverse_Iterator;
+
/**
* @class ACE_DLList_Node
*
@@ -33,22 +41,32 @@ public:
friend class ACE_Double_Linked_List_Iterator_Base<ACE_DLList_Node>;
friend class ACE_Double_Linked_List_Iterator<ACE_DLList_Node>;
friend class ACE_Double_Linked_List_Reverse_Iterator<ACE_DLList_Node>;
+
ACE_DLList_Node (void *i,
ACE_DLList_Node *n = 0,
ACE_DLList_Node *p = 0);
+
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
+
void *item_;
+
ACE_DLList_Node *next_;
ACE_DLList_Node *prev_;
+
protected:
ACE_DLList_Node (void);
};
+
ACE_END_VERSIONED_NAMESPACE_DECL
+
#if defined (__ACE_INLINE__)
#include "ace/Containers.inl"
#endif /* __ACE_INLINE__ */
+
#include "ace/Containers_T.h"
+
#include /**/ "ace/post.h"
+
#endif /* ACE_CONTAINERS_H */