// cell.h: Single-cell data entry
#include "field.h"
class Cell : public Field
{
char *value,
*msg;
public:
~Cell();
};
inline Cell::~Cell()
{
cout << "~Cell()" << endl;
// What the real destructor does:
// delete [] msg;
// delete [] value;
}
/* End of File */