Practical Guide to C++ by Steve Bownas, May 2000 =============================================================================== Sample Project - Tic Tac Toe Game ------------------------------------------------------------------------------- Part 3 - BoardCell class Develop most of the code for the BoardCell class. Write a constructor, a desctructor, and methods to do the following: - Display the value of the current cell on a game board. - Set the value of the current cell. Remember that once a player uses a cell, the other player cannot use it. - A method that returns the value of the cell. This might help the board check for a winner. - A method that clears and resets the cell for a new game. Once you have written your code, build the project and correct any errors.