diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-25 15:17:59 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-25 15:17:59 +0000 |
commit | 4c5c96950d4b61e3a814f4abe93e974544973539 (patch) | |
tree | e9a1bfb52cf88ef8affcd5ef6d7a551107173ed3 /ace/Future_Node.cpp | |
parent | a45865482cade7523b3229deaa42362cd41475a7 (diff) | |
download | ATCD-pre-PI.tar.gz |
This commit was manufactured by cvs2svn to create branch 'pre-PI'.pre-PI
Diffstat (limited to 'ace/Future_Node.cpp')
-rw-r--r-- | ace/Future_Node.cpp | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/ace/Future_Node.cpp b/ace/Future_Node.cpp new file mode 100644 index 00000000000..79c8706dc7f --- /dev/null +++ b/ace/Future_Node.cpp @@ -0,0 +1,43 @@ +// Future.cpp +// $Id$ + +#define ACE_BUILD_DLL + +#ifndef ACE_FUTURE_NODE_CPP +#define ACE_FUTURE_NODE_CPP + +#include "ace/OS.h" +#include "ace/Future_Node.h" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +#pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + +ACE_RCSID(ace, Future_Node, "$Id$") + +#if defined (ACE_HAS_THREADS) + +template <class T> +ACE_DLList_Future_Node<T>::ACE_DLList_Future_Node (void) + : next_ (0), + prev_ (0) +{ +} + +template <class T> +ACE_DLList_Future_Node<T>::ACE_DLList_Future_Node (const ACE_Future<T> &item, + ACE_DLList_Future_Node<T> *n, + ACE_DLList_Future_Node<T> *p) +: item_ (item), + next_ (n), + prev_ (p) +{ +} + +template <class T> +ACE_DLList_Future_Node<T>::~ACE_DLList_Future_Node (void) +{ +} + +#endif /* ACE_HAS_THREADS */ +#endif /* ACE_FUTURE_NODE_CPP */ |