Development log: Assignment 10 Name: Ashok Srinivasan Sep 15, 2005: Wrote header files for the classes: LinkedList, PlayGame, ChessBoard, Player, and Timer. Sep 18, 2005: Implemented the class PlayGame, and tested it. Sep 19, 2005: Implemented insert and delete functions in LinkedList. Sep 20, 2005: Implemented the IsMember and IsEmpty functions in LinkedList. Tested the LinkedList class. Sep 22, 2005: Implemented the ChessBoard and Player classes, and tested it. Sep 23, 2005: Changed the implementation of LinkedList to use a doubly linked list. Sep 24, 2005: Implemented the Timer class, and the main function. main did not compile -- linker said the class LinkedList was undefined. Sep 25, 2005: John Wayne helped me fix the LinkedList link error. It was because it was defined in a different namespace. Code compiled but seg-faulted. Sep 26, 2005: Fixed the seg-fault by tracing execution using ddd. I was trying to dereference an invalid pointer. This in turn was caused by an uninitialized variable. Tested the code on many test case I created. Appears to run correctly. Sep 27, 2005: Performed more tests, and submitted the assignment.