Containers.inl

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 //
00003 // Containers.inl,v 4.2 2005/10/28 16:14:52 ossama Exp
00004 
00005 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
00006 
00007 ACE_INLINE
00008 ACE_DLList_Node::ACE_DLList_Node (void)
00009   : item_ (0),
00010     next_ (0),
00011     prev_ (0)
00012 {
00013 }
00014 
00015 ACE_INLINE
00016 ACE_DLList_Node::ACE_DLList_Node (void *&i,
00017                                   ACE_DLList_Node *n,
00018                                   ACE_DLList_Node *p)
00019   : item_ (i),
00020     next_ (n),
00021     prev_ (p)
00022 {
00023 }
00024 
00025 ACE_END_VERSIONED_NAMESPACE_DECL

Generated on Thu Nov 9 09:41:49 2006 for ACE by doxygen 1.3.6