// ListNode.C // // implements the methods of the LinkedNode class // used in the linked list implementation of List #include "ListNode.H" // constructor ListNode::ListNode ( const Object & theElement, ListNode * n) : element( theElement ), next( n ) { // no code }