/***********************************************************************/
/* file dlist_item.cc */
/* contains the implementation of class members of class */
/* dlist_item. */
/***********************************************************************/
#include "dlist_item.h"
/***********************************************************************/
/* implementation of class dlist_item */
/***********************************************************************/
/***********************************************************************/
/* contructor */
/***********************************************************************/
template <class type>
dlist_item<type>::dlist_item(const type& dat):container_item<type>(dat)
{
prev= NULL;
next= NULL;
}
/***********************************************************************/
/* destructor */
/***********************************************************************/
template <class type>
dlist_item<type>::~dlist_item()
{
}