// ************************************************** //
// const print function for CHAR_DL_CELL //
// ************************************************** //
ostream& CHAR_DL_CELL::print(ostream& output) const
{
if(previous!=NULL)
output << "<-->";
output << element;
if(next==NULL)
output << ".";
return output;
}
// ************************************ //
// grab function for CHAR_DL_CELL //
// ************************************ //
istream& CHAR_DL_CELL::grab(istream& in)
{
in >> element;
return(in);
}